Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: unix->dos & dos->unix

by giulienk (Curate)
on Oct 10, 2002 at 09:08 UTC ( [id://204119]=note: print w/replies, xml ) Need Help??


in reply to unix->dos & dos->unix

To have true portability you should use hex codes:
#DOS to UNIX perl -i.orig -pe 's/\015\012/\012/g' dosfile.txt
Take a look at perlrun for the -i switch. And remember the following hash with newline for Windows, UNIX and Mac. I usually declare this on top of my program when i need to do lots of translation or outputting different kind of files
%N = ( WIN => "\015\012", UNIX => "\012", MAC => "\015" );


$|=$_="1g2i1u1l2i4e2n0k",map{print"\7",chop;select$,,$,,$,,$_/7}m{..}g

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://204119]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-25 07:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found