I know how to use sed with grep, but within Perl the below fails. How can one get sed to work within a Perl program?
chomp (my @lineNumbers=`grep -n "textToFind" $fileToProcess | sed -n 's/^\([0-9]*\)[:].*/\1/p'`)
|
feedback
|
|
I'm surprised that nobody mentioned the s2p utility, which translates sed "scripts" (you know, most of the time oneliners) to valid perl. (And there's an a2p utility for awk too...) | |||
|
feedback
|
|
Suggestion: Use Perl regular expressions and replacements instead of grep or sed. It's approximentally the same syntax, but more powerful. Also in the end it will be more efficient than invoking the extra sed process. | |||||||||||||
feedback
|
|
Anything you need to do with grep or sed can be done natively in perl more easily. For instance (this is roughly right, but probably wrong):
| |||||||||||||
feedback
|
|
Supposedly Larry Wall wrote Perl because he found something that was impossible to do with sed and awk. The other answers have this right, use Perl regular expressions instead. Your code will have fewer external dependencies, be understandable to mode people (Perl's user base is much bigger than sed user base), and your code will be cross-platform with no extra work. Edit: Paul Tombin relates an excellent story in his comment on my answer. I'm putting it here to increase it's prominence. "Henry Spencer, who did some amazing things with Awk, claimed that after demoing some awk stuff to Larry Wall, Larry said he wouldn't have bothered with Perl if he'd known." – Paul Tomblin | |||||||||
feedback
|
|
Use power Luke:
Thus when you want same think as this slow and overcomplicated
| |||||
feedback
|
|
Edited: OK, I fixed it now.
| ||||
|
feedback
|
|
If you had a large If you run <
Not exactly worth doing on small expressions. | |||
feedback
|