Guest User

Untitled

a guest
Sep 4th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. OUTPUT=$1.sql
  4. ENC=$OUTPUT.gpg
  5. mysqldump --user=root --password=test $1 > $OUTPUT
  6. gpg -c --batch --passphrase=$2 $OUPTUT
  7. rm $OUTPUT
Add Comment
Please, Sign In to add comment