Use \t as separator on command line.
How can I force a tab character as a field separator on the command line. I've tried vsql -t -F"\t", -f"\\t" and some variations on E'\09' etc. I have usually just piped to tr to get the job done but I feel there must be a better way. Thx. (sorry if repost, cannot find in FAQ)
0
Comments
vsql -F $'\t'
(with the leading '$') should do it.Thanks!