Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^3: $/ usage

by graff (Chancellor)
on Jan 02, 2013 at 22:44 UTC ( [id://1011369]=note: print w/replies, xml ) Need Help??


in reply to Re^2: $/ usage
in thread $/ usage

To get all the lines from a slurped input file to show up as a single line on output, you want something like this:
perl -e 'undef $/; $_=<>; tr/\n/ /; s/ $/\n/; print' list
Or you could just use unix/linux commands that do the same thing:
xargs echo -n < list
(If you want a clean line break at the end of that output, add  && echo at the end.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-03-19 11:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found