All-in-One WP Migration WP CLI Integration

WP-CLI integration is built into All-in-One WordPress Migration, allowing you to run migrations from the command line. It adds backup and restore commands that can be executed via the CLI.

BACKUP

backup
Creates a new backup file.
Example:
wp ai1wm backup

SUBCOMMANDS:
OPTIONDESCRIPTIONEXAMPLE
[--sites]Create a new backup file for WP Multisite (Sub-Sites/Subdomain-Sites).wp ai1wm backup --sites
[--exclude-spam-comments]Creates a backup file without spam comments.wp ai1wm backup --exclude-spam-comments
[--exclude-post-revisions]Creates a backup file without post revisions.wp ai1wm backup --exclude-post-revisions
[--exclude-media]Creates a backup file without media library files.wp ai1wm backup --exclude-media
[--exclude-themes]Creates a backup file without any themes.wp ai1wm backup --exclude-themes
[--exclude-inactive-themes]Creates a backup file without currently inactive themes.wp ai1wm backup --exclude-inactive-themes
[--exclude-muplugins]Creates a backup file without must-use plugins.wp ai1wm backup --exclude-muplugins
[--exclude-plugins]Creates a backup file without plugins.wp ai1wm backup --exclude-plugins
[--exclude-inactive-plugins]Creates a backup file without currently inactive plugins.wp ai1wm backup --exclude-inactive-plugins
[--exclude-cache]Creates a backup file without cache files.wp ai1wm backup --exclude-cache
[--exclude-database]Creates a backup file without the database.wp ai1wm backup --exclude-database
[--exclude-email-replace]Creates a backup file without replacing email domain. wp ai1wm backup --exclude-email-replace
[--replace "find" "replace"]Finds and replaces text in the database. Use --replace flag before each pair for replacement.wp ai1wm backup --replace "wordpress" "WordPress"
SIMULTANEOUS USEAll options be used simultaneously except --list can. Replace option could be used between other options. wp ai1wm backup --exclude-inactive-themes --replace "find" "replace" --exclude-cache --replace "old text" "new text"
Restores a backup. The filename must be provided and must be located in ai1wm-backups directory.wp ai1wm restore
RESTORE

restore
This will restore a backup. A filename must be specified, and it must be located in the ai1wm-backups directory.
Example:
wp ai1wm restore migration-wp-20170913-095743-931.wpress

BACKUP LIST

Backup list – wp ai1wm list-backups

This will return a list of backup files. Using this option will not create a backup and will disregard any other options that have been set alongside it.