Help for this page

Select Code to Download


  1. or download this
    head -1 file.txt | perl -F, -lane 'print join(",",@F);'
    
  2. or download this
     head -1 file.txt | sed -e 's/$/x/' | perl -F, -lane 'print join(",",@
    +F[0..$#F-1]);'