Why I Like Perl
First
Previous
ToC
Next
Last
One-Liners
highly useful even from command line
amazing utilities can be written as one-liners
search and replace and backup
perl -pe -i.bak 's/PERL/Perl/g' txt
-e execute this command
-p loop over each line and print
-i inplace edit, make a backup file
Slide 35 of 47