On Tue, 10 Oct 2000, you wrote:
> Meir Faraj wrote:
> > Hi ,
> > I've tryed this :
> > [root@localhost myscripts]#  find .. -name "*.class" | rm
> > rm: too few arguments
> > Try `rm --help' for more information.
> >
> > when :
> >
> > [root@localhost myscripts]#  find .. -name "*.class"
> > ../client/core/org/NoNextComponentException.class
> > ../client/core/org/NoPartSelectedException.class
> > ../client/core/org/PartNotFoundException.class
> > ../client/core/org/XMLFactory.class
> > ../client/core/org/XMLGui.class
> > ../client/core/shell/component/XMLComponent.class
> > ../client/core/shell/container/XMLPanel.class
> > ../client/core/shell/main/NetSharer$1.class
> > ../client/core/shell/main/NetSharer.class
> > ../client/core/utils/codecs/Base64.class
> >
> > so rm doesn't see the pipe ;-)
>
> use instead:
>
> rm `find .. -name "*.class"`
>
> that should do the trick ...
thanks (Why didn't I think about that ;-))

Reply via email to