Convert a file with data on new lines to a CSV list:

sed 's/$/ /' input.txt | tr ' \n' ', ' | sed 's/, $//' > output.txt


CategoryLinux

LinesToCsv (last edited 2006-05-02 11:27:30 by DavidKeen)