I had been backing up a MySQL database with a simple shell script for a while now. What I somehow forgot to add to the script was a command to compress the SQL dumps before uploading them to my backup server. The script had been running for a few months, so manually compressing each file wasn’t much of an option. So I wrote this little shell script do the work for me.
1 2 3 4 5 6 7 |
#!/bin/sh cd /some/directory/with/sql/files for file in *.sql; do tar cvzf "${file}".tar.gz "${file}" rm "${file}" done |
The script places all of the sql files individually into a tar archive with GZip compression. The new file uses the old file’s name with “.tar.gz
” appended at the end. The old file is deleted after the compressed archive has been created.
You can of course do this for other files, just change the *.sql
mask to work with different files. If for some reason you just want TAR files without the GZip compression, replace the tar line in the script with “tar cvf "${file}".tar "${file}"
“.