We currently have a working ant script that will use mysqldump to dump a database on a remote server to a file on that remote server. We use ant's exec task to run an expect script to ssh to the remote machine and run the mysqldump command. I'm trying to update the command to restrict the dump to only include data that is less than 3 months old. I'm running into annoying escaping issues with quotes and parens.
Here is the command line I'm trying to get working:
expect -f ssh-pass.exp <SERVER_PASSWD> ssh <USER>@<IP_ADDRESS> \"mysqldump -h localhost -u user --password=passwd staging --where=\"createTimeFi > now() - interval 3 month\" --ignore-table=staging.JMS_MESSAGES --ignore-table=staging.JMS_ROLES --ignore-table=staging.JMS_SUBSCRIPTIONS --ignore-table=staging.JMS_TRANSACTIONS --ignore-table=staging.JMS_USERS --ignore-table=staging.TIMERS > dump.sql\"
Here is the expect script:
set password [lrange $argv 0 0]
set command [lrange $argv 1 1]
set arg1 [lrange $argv 2 2]
set arg2 [lrange $argv 3 end]
puts "command: $command"
puts "arg1: $arg1"
puts "arg2: $arg2"
set timeout -1
spawn $command $arg1 "$arg2"
match_max 100000
expect "*?assword:*"
puts "\rsending password..."
send -- "$password\r"
puts "\r**************** Running remote command, wait... ******************"
expect eof
I've tried various combinations of escaping quotes around the ssh command and the where argument to mysqldump with no success. Sometimes expect will complain that "interval" is an unknown command. Sometimes on my local machine the command will create files called "now" or "dump.sql" which seem to indicate that my local shell is eating the quotes and doing redirects where it shouldn't or it will complain about invalid tokens (i.e. the parens).