> On Wed, 19 Feb 2003, Rick Carroll wrote:
 
> > Perhaps save text option (sticky bit) will help.
> > Causes the program's text to be saved in memory for faster subsequent execution.
> > 
> > chmod o+t  /bin/grep
> 
> i'm pretty sure that option has long since lost any value.
> 
> rday

How about looking at using xargs to feed grep. grep will stay resident
and active for each file fed to it. The command would look something like

    ls * | xargs -t grep -l "string"

Replace 'ls *' with whatever you use to get a list of filenames.
remove the '-t' if you don't want to see the individual commands.



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to