Help for this page

Select Code to Download


  1. or download this
    #DOS to UNIX
    perl -i.orig -pe 's/\015\012/\012/g' dosfile.txt
    
  2. or download this
    %N = (
        WIN  => "\015\012",
        UNIX => "\012",
        MAC  => "\015"
    );