Skip to content

Instantly share code, notes, and snippets.

@yelban
Forked from nateflink/mysqldump.sh
Created November 10, 2024 05:05
Show Gist options
  • Save yelban/23c8206f5b73f2a7afa5668b71c1b0bf to your computer and use it in GitHub Desktop.
Save yelban/23c8206f5b73f2a7afa5668b71c1b0bf to your computer and use it in GitHub Desktop.
#!/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