bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: find utility


From: Hans-Bernhard Broeker
Subject: Re: find utility
Date: 10 Jul 2001 12:23:36 GMT

Ronald E Pucul <address@hidden> wrote:
> With command
>     find . ( -name "*.jnk" -or -name "*.junk" ) -print
> I get the following err msg
>    Badly placed ()'s.

Pilot error. You have to escape '(' and ')' from interpretation by the
shell (yours seems to be a of the C-shell variety, judging by the
error message you got). The following would have worked:

   find . \( -name "*.jnk" -or -name "*.junk" \) -print

-- 
Hans-Bernhard Broeker (address@hidden)
Even if all the snow were burnt, ashes would remain.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]