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?

.tar? It'd be only one file anyway. – FatalError Feb 11 at 4:35mysqldumpoutput to whatever you want,bzip2,xz– sherpya Feb 11 at 5:31