GREP Extract Pipe Delimited
awk 'BEGIN { FS = "|" } ; { print $2 }'
Delta Sierra
awk 'BEGIN { FS = "|" } ; { print $2 }'