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 get into tar file the stdout generated from Mysqldump:

mdm@deb606:~$ mysqldump --opt test1 -u root -ppassword | tar -czf  example.tar.gz

doesn't work.

At the moment I've temporary solved using:

mdm@deb606:~$ mysqldump --opt test1 -u root -ppassword | gzip -f > example.gz

Is it possible do the the same using also tar or bzip2?

share|improve this question
What advantage is there to making it a .tar? It'd be only one file anyway. – FatalError Feb 11 at 4:35
Sure, one file only, but using tar i have chance to choose different kind of compression and other options, specially if my DB become large – fromthestone Feb 11 at 4:44
still pointless you can pipe mysqldump output to whatever you want, bzip2, xz – sherpya Feb 11 at 5:31

closed as off topic by M42, jv42, Jon Egerton, Rory McCrossan, djc Feb 11 at 10:37

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 0 down vote accepted

I don't know that it's possible to pipe directly into tar (in general, that doesn't make a lot of sense), however the bzip2 command will accept - to mean to read from stdin, i.e.:

mdm@deb606:~$ mysqldump --opt test1 -u root -ppassword | bzip2 - > example.bz2
share|improve this answer

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