> > > removing all the word ~tmp files on our Samba
> > > server
> >
> >    find /your/file-system -type f -name '*~tmp*' -print0 | xargs -0 rm -f
> >
> > or something like that.
> >
> 
> find /your/file-system -type f -name '*~tmp*' -delete

Or, Graham wanted something with {}

find /your/file-system -type f -name '*~tmp*' -exec /bin/rm -rf {} \;

Olivier
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to