Help for this page

Select Code to Download


  1. or download this
    perl -ne 'BEGIN{$/=","} $o.=$_; if(length($o)>=80){ print "$o\n";$o=""
    + }
      END{print "$o\n"}' < file.no-breaks > file.with-breaks
    
  2. or download this
    perl -pe 'tr/,/\n/' < comma.delimited > newline.delimited