Meir Faraj wrote:
> [root@localhost myscripts]#  find .. -name "*.class" | rm
> rm: too few arguments

> so rm doesn't see the pipe ;-)

Should it? I would do:

  rm $(find .. -name "*.class")

or

  find .. -name "*.class" -exec rm {} \;


-- 
A father is someone who carries pictures where his money used to be.

Reply via email to