Path: utzoo!attcan!uunet!nih-csl!lhc!mimsy!mojo!mojo!djm From: djm@eng.umd.edu (David J. MacKenzie) Newsgroups: comp.unix.shell Subject: a compromise safe way to use find and xargs rm together Message-ID: Date: 27 Oct 90 14:58:28 GMT Sender: news@eng.umd.edu (The News System) Organization: Free Software Foundation Lines: 8 Here is another safe way to use find and xargs together, if you don't mind making files with newlines in the name immune to removal. find / ! -name '* *' ! -name '.* *' -atime -10 -print | xargs rm -f -- David J. MacKenzie