in reply to Re: How to change the delimiter of CSV file
in thread How to change the delimiter of CSV file

That's a good one :) bookmarked as: Converting File Delimiters (csv to tsv to psv, use App::CCSV)

linux shell quoted
perl -MApp::CCSV -ne ' $csv->sep_char(q{|}); csay @f; $csv->sep_char(q{,}) ' < comma.csv >pipe.CSV

windows shell quoted
perl -MApp::CCSV -ne " $csv->sep_char(q{|}); csay @f; $csv->sep_char(q{,}) " < comma.csv >pipe.CSV

  • Comment on Re^2: How to change the delimiter of CSV file