Skip to content

Instantly share code, notes, and snippets.

@wokamoto
Created December 16, 2015 14:59
Show Gist options
  • Save wokamoto/44f636978657169594ed to your computer and use it in GitHub Desktop.
Save wokamoto/44f636978657169594ed to your computer and use it in GitHub Desktop.
[WordPress][wp-cli] テーブルごとにエクスポートファイルを作成する
#!/bin/sh
tables=$(wp db query "show tables;" | grep -v "Tables_in")
for table in ${tables}; do
echo "--- ${table}"
# エクスポート処理
wp db export ${table}.sql --tables=${table}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment