Meir Faraj <[EMAIL PROTECTED]> writes:

> Hi ,
>  I wanna to know if it's possible to put the small command unix2dos an 
> dos2unix for cr/cr-lf  convertion???

dos2unix :
  perl -i -pe 's/\r\n/\n/' files

unix2dos :
  perl -i -pe 's/\n/\r\n/' files

as aliases so ?

Reply via email to