リモートサーバーのスクリプトで次のコマンドを実行していますが、エラーが発生します。No such file or directory
ssh -t -t [email protected] \"sudo mysql nss_mysql < /home/user/scripts/Db_nss_mysql-`date +%Y-%m-%d`.sql && /bin/bash /home/user/scripts/jenkin-soft.sh\"
実行すると、bash jenkin-soft.sh
エラー全体は次のようになります。
jenkin-soft.sh: line 36: /home/user/scripts/Db_nss_mysql-`date +%Y-%m-%d`.sql: No such file or directory.
次のコマンドを試しましたが、正常に動作します。
givinv@ser1:~/scripts$ ssh -t -t [email protected] "sudo mysql"
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 66
mysql> Bye
Connection to xx.xx.xx.xx closed.
givinv@ser1:~/scripts$ ssh -t -t [email protected] "sudo ls /home/user/scripts/Db_nss_mysql-`date +%Y-%m-%d`.sql"
/home/user/scripts/Db_nss_mysql-2017-04-07.sql
Connection to xx.xx.xx.xx closed.
givinv@ser1:~/scripts$
私は何が間違っていましたか?
ベストアンサー1
ここに引用に問題があるか、むしろ不足しています。なぜなら、次のように書くとき:\"sudo ....\"文字列を引用するのではなく、引用文字"を引用するからです。
ssh -t -t [email protected] 'sudo mysql nss_mysql < /home/user/scripts/Db_nss_mysql-`date +%Y-%m-%d`.sql && /bin/bash /home/user/scripts/jenkin-soft.sh'