Delete all files in current directory that have been modified less than 5 days ago.

find ./ -mtime -5 | xargs rm -f

-5
By: skye
2009-03-23 21:00:45

What Others Think

Why use xargs? find ./ -mtime -5 -exec rm '{}' \; works just fine.
ozymandias · 878 weeks and 2 days ago
or why don't you use a rm -f `find ./ -mtime -5`?
jasvazquez · 878 weeks and 2 days ago
jasvazquez, I think on some systems rm has an upper limit to the number of arguments it can handle at once. It is a *very* large number, but it exists.
ozymandias · 878 weeks and 2 days ago
ozymandias - yes I ran into this on my Redhat 7.3 system where tons of error files were generated. You couldn't just rm * - it would say that there were too many files or something along those lines.
scifisamurai · 878 weeks and 2 days ago
jasvazquez, the other reason your version won't work is because it doesn't quote each file properly. If there are special characters or spaces in any of those file names, it won't work. I would modify ozymandias's slightly, and write it as: find . -mtime 5 -exec rm {} + The quotes are unnecssary around the braces, since they're not special characters in bash if there's nothing in between them. Also, using +, instead of \; gives you a very slight performance boost, since it will run only one instance of rm for all the files (rm file1 file2 file3...), rather than one for each file (rm file1; rm file2; rm file3; ...), unless there are too many files to specify on the command line, then it will only run as many instances of rm as it absolutely has to (rm file1 file2 file3 ... ; rm file_bazillion file_bazillion1 file_bazillion2 ...).
goodevilgenius · 878 weeks and 1 day ago
Sorry, that should have been -mtime -5
goodevilgenius · 878 weeks and 1 day ago
The maximum number of shell arguments is usually at 4096. So you cannot delete more than ~4000 files with -exec rm {} \;
lme · 877 weeks and 6 days ago

What do you think?

Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?

You must be signed in to comment.

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.

Share Your Commands



Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for: