Last active
August 9, 2018 09:26
-
-
Save lemajes/58f0d3b173dd0d4cafd9153357e86f51 to your computer and use it in GitHub Desktop.
[Mysqldump From Remote] dump database from remote sql server #linux #script #mysql #dump
This file contains hidden or 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 | |
| mysqldump -u <USER> -h <DBHOST> -p <BDD> > bdddump.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment