#!/bin/sh
table_list=“{tables}”
for table in $table_list ; do
mysqldump --single-transaction -u{remote} -p{pwd} -h{ip} $table > ${table}.sql
{mysqlpath/}mysql -u{local} -p{pwd} -h{localhost} {table} < ${table}.sql
done
'linux' 카테고리의 다른 글
grep 여러 키워드 찾기 (0) | 2019.05.09 |
---|---|
vi 공백제거 :g/^$/d (0) | 2017.08.09 |
bad superblock on /dev/sdb1 (0) | 2014.11.19 |
top 5초마다 프로세스 사용량 파악 (0) | 2014.02.11 |
원격지에 열려있는 포트 확인 (0) | 2014.01.23 |