in reply to pull - a command line pipe-line building aid to pull perl regexps out of piped input
This can be done right from the Perl -e command line using the -n flag. example: pull '^(\w+)' is simply perl -ne 'print "$1\n" if /^(\w+)/"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: pull - a command line pipe-line building aid to pull perl regexps out of piped input
by cider (Acolyte) on Sep 27, 2001 at 08:56 UTC |