Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: One Liners

by davido (Cardinal)
on Jan 11, 2005 at 06:43 UTC ( [id://421204]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -e "print qq/Hello world!\n/;"
    
  2. or download this
    perl -n -e "print qq/$.:\t$_\n/;" textfile.txt
    
  3. or download this
    while ( <> ) {
        ..........  # Your code goes here.
        print $_;
    }
    
  4. or download this
    perl -pe "s/\bperl\b/Perl/g;" textfile.txt
    
  5. or download this
    perl -pe "s/\bperl\b/Perl/g;" textfile.txt >temptext.txt
    
  6. or download this
    perl -pi.bak -e "s/\bperl\b/Perl/g" infile.txt
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-03-29 06:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found