Last active
November 10, 2024 05:05
-
-
Save nateflink/5790798 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#by Nate Flink | |
mysqldump -u $2 -p$3 --extended-insert=false -h $4 $1 > $5 | |
MINSIZE=3 | |
ACTSIZE=$(du -k $5 | cut -f 1) | |
if [ $ACTSIZE -le $MINSIZE ]; then | |
echo "Error: the database backup is ${ACTSIZE} kilobytes, needs to be at least ${MINSIZE}" | |
exit 1 | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment