On Sat, 17 Jun 2000, Vic wrote:
> What would I type in to get linux to
> erase every single *.rpmorig file
> on the drive or at least under the
> dir I am currently in (including the
> subdirs) I already know 'rm *.rpmorig'
> but it wont erase the files in other dirs
> under me.
In the current dir :
find . -name "*.rpmorig" -exec rm -f {} \;
To erase all the *.rpmorig in your system, replace the "." by a "/"
HTH
Flupke
--
<< There's no place like ~ ! >>
