For a minor tweak ( says the sysadmin, forever worried
about users wasting his cycles ), try it this way
find . -type f | xargs perl -pi.bak -e 's/string x/string y/g'
Using the -exec flag will exec a perl for every file found.
This can be slow and painful - the most expensive part of perl
is the initial load. By piping to xargs, you start perl but
once.
If you you have too many files to fit on one command line, you
can modify the command like this:
find . -type f | xargs -n 255 perl -pi.bak -e 's/string x/string y/g'
which will cause xargs to call perl with 255 files each time.
Mik
Mik Firestone ( perlus bigotus maximus )
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.