TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [TCLUG:21649] Limits of grep?



Adam Maloney <adamm@sihope.com> wrote:

> ls -1 > filelist
> awk '{ printf("grep string %s\n", $1) }' filelist > script.sh
> chmod +x script.sh
> ./script.sh
>
> awk owns your 'fro!

perl -e 'print `grep pattern $_` while <*>'

:-)

J