Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Alright, so simple problem here. I'm working on a simple back up code. It works fine except if the files have spaces in them. This is how I'm finding files and adding them to a tar archive:

find . -type f | xargs tar -czvf backup.tar.gz 

The problem is when the file has a space in the name because tar thinks that it's a folder. Basically is there a way I can add quotes around the results from find? Or a different way to fix this?

share|improve this question
5  
The best way to use find ... | xargs ... is to use the -print0/-0 parameter on each: find -print0 ... | xargs -0 .... This will cause the filenames to be separated by a null character, which means you can have spaces or newlines or other weird stuff in your filenames and it will still work. – Porges May 5 '11 at 2:12
Nice tip Porges. I think that should be the answer. To me, anything less, is flaky. – Warren P May 5 '11 at 14:55
1  
There is a problem with using xargs and tar this way when you have a large number of files, xargs will repeatedly invoke tar -c, and that will keep overwriting your archive, and the result is you won't have all the files you expect. See this more detailed explanation and my answer below. – Steve Kehlet Sep 6 '12 at 17:43

4 Answers

up vote 5 down vote accepted

Why not:

tar czvf backup.tar.gz *

Sure it's clever to use find and then xargs, but you're doing it the hard way.

Update: Porges has commented with a find-option that I think is a better answer than my answer, or the other one: find -print0 ... | xargs -0 ....

share|improve this answer
My full code will back up only items that are modified in the past day. Since its a daily back up I don't want to have repeated information to save on file size (I also have a full back up every 15 days). – Caleb Kester May 6 '11 at 4:18
To make this a better SO question, I would ask the question about "reliably using find, xargs, and tar together". Your title and question don't really specify that you need find and xargs, and yet you do. – Warren P May 7 '11 at 20:03

Use this:

find . -type f -print0 | tar -czvf backup.tar.gz -T - --null

It will:

  • deal with files with spaces, newlines, leading dashes, and other funniness
  • handle an unlimited number of files
  • won't repeatedly overwrite your backup.tar.gz like using tar -c with xargs will do when you have a large number of files

Also see:

share|improve this answer

Try running:

    find . -type f | xargs -d "\n" tar -czvf backup.tar.gz 
share|improve this answer

An alternative, without using xargs, is using the -exec parameter to the find. Always worked OK for me.

find . -type f -exec tar -czvf backup.tar.gz {} \;
share|improve this answer

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.