Guest User

Untitled

a guest
Oct 11th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # InstructionS
  2. #./mysqlbackup.sh username passwrd host database path
  3. #
  4. #!/bin/bash
  5.  
  6. mysqldump --user=$1 --password=$2 --host=$3 --protocol=tcp --port=3306 --default-character-set=utf8 $4 > $5
  7.  
  8. exit
Add Comment
Please, Sign In to add comment