cygwin out of sync with version?

Linda Walsh cygwin@tlinx.org
Sun Oct 29 23:55:00 GMT 2006


Joey Officer wrote:
> I have a script that I run, the script is:
>
> findme.bash:
> #!/bin/bash
>        for i in $( ls *.gz ); do
>                echo Searching $i
>                zcat -c $i | grep $1 >> searchresults.txt
>                echo Finsihed searching $i , moving on to the next file...
>        done
Hey, Joey, I'm curious,

Would
    zgrep "$1" *.gz

Work for your findme program?, or if you need the filename, maybe...
    zgrep -H "$1" *.gz

Won't give exact same output, but if you don't need the exact
"start/stop" of searching with each file...




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/



More information about the Cygwin mailing list