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

Re: perl's command line snippet which I read from a perl article ( perl tutrous )

by davido (Cardinal)
on Sep 06, 2006 at 07:27 UTC ( [id://571388]=note: print w/replies, xml ) Need Help??


in reply to perl's command line snippet which I read from a perl article ( perl tutrous )

Ok, this isn't that tricky if you disect the command line switches one at a time:

-e

This means essentially "execute the following code". As you can see, in this particular case, the following code is nothing at all; zilch.

-p

This means wrap the -e code in the following loop:

while( <> ) { # -e code goes here (nothing, in this case) print $_; }

Now for the -i: That means do an in-place edit. Whatever characters immediately follow -i will be appended to the input file's name for the purpose of creating a backup file. Often you'll see -i.bak which means take file foo and create a backup named foo.bak. Well, in your case, instead of .bak you're using ~, so it creates a backup named foo~.

Now put it all together:

  1. -i~ Do an in-place edit, but first create a backup file named "inputfile~" (or in your case, foo~).
  2. -p loop over the input file (foo), and after executing the -e code, print the line to the output file (which is the same filename as the original input file, because you're doing in-place editing thanks to -i
  3. -e Execute the following code within the while loop: '' (in other words, do nothing inside the loop except the -p loop's default; print.

I hope this helps, but if it doesn't, see perlrun for more detail. Also (shameless plug), I wrote a node awhile back that went into greater detail on the subject of learning how to compose Perl one liners. The node is here: Re: One Liners. I think you'll find it to be a pretty easy introduction to Perl's command line switches and Perl one-liners. Good luck!


Dave

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-03-29 05:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found