I\'m trying different commands to process csv file where the separator is the pipe | character.
|
While those commands do work when the comma is a separat
You can escape the | as \|
\|
$ cat test hello|world $ awk -F\| '{print $1, $2}' test hello world