Simple bash script to MySQLdump and gzip all databases in separate files by Cristian Balan | Nov 26, 2016 | DB#!/bin/sh NOW=$(date +"%d-%m-%Y") # set MySQL login info MUSER="USERNAME" MPASS="PASSWORD" MHOST="localhost" # guess binary names MYSQL="$(which mysql)" MYSQLDUMP="$(which mysqldump)" GZIP="$(which...