This file contains 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 | |
# sync mysql tables from dev server to production server quickly via command line | |
# specify the list of tables to sync below | |
dev_host="127.0.0.1" | |
dev_user="root" | |
dev_pass="K#oDAk6AF@GumR7" | |
dev_db_name="local_dev" |