in reply to Convert CSV file to TAB delimited
or, for further obfuscation,#!/usr/bin/perl -p s/,/\t/g; END{warn "Changed , to tab on $. lines\n"}
perl looks at any switches in the shebang line, which can ease translating one-liners into scripts. It can drive any future maintainers crazy though.#!/usr/bin/perl -naF, print join "\t",@F; END{warn "Changed , to tab on $. lines\n"}
|
|---|