[CentOS] Computer 1A question

Seán O Sullivan seanos at seanos.net
Sat Aug 5 00:09:42 UTC 2006


Todd Cary wrote:
> I want to delete all files that have the pattern of "*.zip" in the
> directory /home/mydir and all sub-directories.
find /home/mydir -name "*.zip" -type f -print0 | xargs -0 rm


Regards,

Sean



More information about the CentOS mailing list