Skip to content

Instantly share code, notes, and snippets.

View aliselcuk's full-sized avatar
💭
Reshaping

Ali Selcuk aliselcuk

💭
Reshaping
  • superV
  • Istanbul
View GitHub Profile
@brandonsimpson
brandonsimpson / sync_mysql.sh
Created June 8, 2014 20:41
Quickly Dump + Backup + Sync MySQL tables between servers via command line
#!/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"