Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to copy a bunch of files below a directory and a number of the files have spaces and single-quotes in their names. When I try to string together find and grep with xargs, I get the following error:

find .|grep "FooBar"|xargs -I{} cp "{}" ~/foo/bar
xargs: unterminated quote

Any suggestions for a more robust usage of xargs?

This is on MacOS 10.5.3 with BSD xargs.

share|improve this question
The GNU xargs error message for this with a filename containing a single quote is rather more helpful: "xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option". – Steve Jessop Sep 27 '08 at 11:52

11 Answers

up vote 46 down vote accepted

You might also be able to combine all of that into a single find command:

find . -iname "*foobar*" -exec cp "{}" ~/foo/bar \;

This will handle filenames and directories with spaces in them. You can use -name to get case-sensitive results.

(These command line arguments will work with GNU find; I don't know if they're available with BSD's or OS X's find.)

share|improve this answer
-exec will work with any find, I've never understood why people use xargs (and just wait until you hit the xargs directory length limit!!) – Kendall Helmstetter Gelner Oct 2 '08 at 7:15
What is an 'xargs directory length limit'? Do you mean maximum command size? If yes, xargs is supposed to split its arguments in appropriate group sizes. – tzot Oct 14 '08 at 1:22
19  
People use xargs because typically it's faster to call an executable 5 times with 200 arguments each time than to call it 1000 times with one argument every time. – tzot Oct 14 '08 at 1:23
4  
The answer from Chris Jester-Young ought to be the "good answer" there... BTW this solution does not work if a filename begins with "-". At least, it needs "--" after cp. – Keltia Jan 23 '09 at 22:49
2  
Speed example -- over 829 files, the "find -exec" method took 26 seconds while the "find -print0 | xargs --null" method tool 0.7 seconds. Significant difference. – peterporter Aug 27 '12 at 14:47
show 1 more comment

find . -print0 | grep -z 'FooBar' | xargs -0 ...

I don't know about whether grep supports -z, nor whether xargs supports -0, on Leopard, but on GNU it's all good.

share|improve this answer
Leopard does support "-Z" (it is GNU grep) and of course find(1) and xargs(1) do support "-0". – Keltia Jan 23 '09 at 22:47
   
@Keltia Note that in OS X Mountain Lion (10.8) Apple replaced GNU grep with the BSD grep and the -{z|Z} switch doesn't work. – cosmix Nov 28 '12 at 18:14

This is more efficient as it does not run "cp" multiple times:

find -name '*FooBar*' -print0 | xargs -0 cp -t ~/foo/bar
share|improve this answer
1  
This didn't work for me. It tried to cp ~/foo/bar into whatever you find, but not the opposite – Shervin Jun 21 '10 at 7:40
2  
The -t flag to cp is a GNU extension, AFAIK, and isn't available on OS X. But if it were, it would work as shown in this answer. – metamatt May 18 '12 at 7:03

I ran into the same problem. Here's how I solved it:

find . -name '*FoooBar*' | sed 's/.*/"&"/' | xargs cp ~/foo/bar

I used sed to substitute each line of input with the same line, but surrounded by double quotes. From the sed man page, "...An ampersand (``&'') appearing in the replacement is replaced by the string matching the RE..." -- in this case, .*, the entire line.

This solves the xargs: unterminated quote error.

share|improve this answer
I'm on windows and using gnuwin32, so I had to use sed s/.*/\"&\"/ to get it to work. – Pat Oct 16 '12 at 5:08

Look into using the --null commandline option for xargs with the -print0 option in find.

share|improve this answer

I have found that the following syntax works well for me.

find /usr/pcapps/ -mount -type f -size +1000000c | perl -lpe ' s{ }{\\ }g ' | xargs ls -l | sort +4nr | head -200

In this example, I am looking for the largest 200 files over 1,000,000 bytes in the filesystem mounted at "/usr/pcapps".

The Perl line-liner between "find" and "xargs" escapes/quotes each blank so "xargs" passes any filename with embedded blanks to "ls" as a single argument.

Bill Starr Fri, 23 Jan 2009, 5:40 pm EST

share|improve this answer

Be aware that most of the options discussed in other answers are not standard on platforms that do not use the GNU utilities (Solaris, AIX, HP-UX, for instance). See the POSIX specification for 'standard' xargs behaviour.

I also find the behaviour of xargs whereby it runs the command at least once, even with no input, to be a nuisance.

I wrote my own private version of xargs (xargl) to deal with the problems of spaces in names (only newlines separate - though the 'find ... -print0' and 'xargs -0' combination is pretty neat given that file names cannot contain ASCII NUL '\0' characters. My xargl isn't as complete as it would need to be to be worth publishing - especially since GNU has facilities that are at least as good.

share|improve this answer

The perl version above won't work well for embedded newlines (only copes with spaces). For those on e.g. solaris where you don't have the gnu tools, a more complete version might be (using sed)...

find -type f | sed 's/./\\&/g' | xargs grep string_to_find

adjust the find and grep arguments or other commands as you require, but the sed will fix your embedded newlines/spaces/tabs.

share|improve this answer

I used a Bill Star's answer slightly modified on Solaris:

find . -mtime +2 | perl -pe 's{^}{\"};s{$}{\"}' > ~/output.file

this will put quotes around each line. I didn't use the '-l' option although it probably would help.

The file list I was going though might have '-' but not newlines. I haven't used the output file with any other commands as I want to review what was found before I just start massively deleting them via xargs.

share|improve this answer

For users of the stupid non-GNU version, Bill Starr's solution doesn't work if there are apostrophes in the filename. rjb1's also has the same problem, I think, although I can't replicate it with a test. Carl Yamamoto-Furst's version works.

share|improve this answer
find | perl -lne 'print quotemeta' | xargs ls -d

I believe that this will work reliably for any character except line-feed (and I suspect that if you've got line-feeds in your filenames, then you've got worse problems than this). It doesn't require GNU findutils, just Perl, so it should work pretty-much anywhere.

share|improve this answer
Is it possible to have a line-feed in a filename? Never heard of it. – mtk May 16 '12 at 17:31
2  
Indeed it is. Try, e.g., mkdir test && cd test && perl -e 'open $fh, ">", "this-file-contains-a-\n-here"' && ls | od -tx1 – mavit May 17 '12 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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