Help for this page

Select Code to Download


  1. or download this
    perl -ne 'print;' *.txt > all.csv
    
  2. or download this
    for file in *.txt; do   cat "$file";   echo; done > newfile.csv
    
  3. or download this
    cat *.txt > newfile.txt