vote up 2 vote down star
1

I'm trying to write a bash command that will delete all files matching a specific pattern - in this case, it's all of the old vmware log files that have built up.

I've tried this command:

find . -name vmware-*.log | xargs rm

However, when I run the command, it chokes up on all of the folders that have spaces in their names. Is there a way to format the file path so that xargs passes it to rm quoted or properly escaped?

flag

Cross posted: serverfault.com/questions/76031/… – Dennis Williamson Oct 19 at 20:18

6 Answers

vote up 6 vote down check

Try using:

find . -name vmware-*.log -print0 | xargs -0 rm

This causes find to output a null character after each filename and tells xargs to break up names based on null characters instead of whitespace or other tokens.

link|flag
vote up 1 vote down

Check out the -0 flag for xargs; combined with find's -print0 you should be set.

find . -name vmware-*.log -print0 | xargs -0 rm
link|flag
vote up 4 vote down

find . -name vmware-*.log -print0 | xargs -0 rm

What this does is it causes find to print the names separated by NUL characters, which cannot appear in Unix filenames. Similarly, the -0 option to xargs tells it that the output is separated in this manner.

Note that -print0 is a GNU extension and will not be available on arbitrary Unixes, but it should work on any Linux machine, for instance.

link|flag
vote up 3 vote down

Do not use xargs. Find can do it without any help:

find . -name "vmware-*.log" -exec rm '{}' \;

link|flag
2  
It's always good to avoid starting an extra process, especially something like this where you could provide something way too long to xargs. Note that find even has a delete action you can use instead of the -exec ... - but it's easier to customize this way. You also don't have to quote the curly braces, unless you're using an old shell like tcsh. – Jefromi Oct 19 at 18:35
1  
But this will launch an rm process for each file individually, instead of passing several filenames to rm like xargs does, so it's going to be slower. – jk Oct 19 at 18:37
1  
@jk: That's why newer find implementations have find -exec rm '{}' +, which will batch up arguments just like xargs does. – ephemient Oct 19 at 18:53
@jk: You're right about the processes. As for the speed, there are always exceptions, but in my experience, it's not the rm process-starting that dominates. If you're deleting enough files that the rm time wins out, it's the actual disk activity holding you up. Otherwise it's the find time that matters anyway (think 5 matches out of 10000 files). – Jefromi Oct 19 at 19:03
@ephemient: Good call. I'd totally forgotten that! – Jefromi Oct 19 at 19:03
show 1 more comment
vote up 0 vote down

GNU find

find . -name vmware-*.log -delete
link|flag
vote up 0 vote down

find . -name vmware-*.log | xargs -i rm -rf {}

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.