On 23/11/06, David Hopkins <[EMAIL PROTECTED]> wrote:
>
> find $HOME/.mozilla -type f | xargs -I {} grep -H word {}
>

Quick simplification of the above command: since the filenames being
passed from xargs to grep are needed at the end of the grep command,
you can replace it with

find $HOME/.mozilla -type f | xargs grep -H word


Hwyl,
Neil.

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/

Reply via email to