我正在使用bash shell并试图找出编写以下内容的正确方法:
ssh mysuer@remotehost 'echo "update user set url = \'localhost\' where url = \'mydomain.com\';" >> /tmp/db.sql'
到目前为止,以上操作均无效。
按下回车键后,下面的一行是a >
,好像我希望在某处关闭一个开放的报价。我需要怎么做才能做到这一点
update user set url = 'localhost' where url = 'mydomain.com';
输出到远程文件?
bash中单引号字符串中转义撇号的
—
kenorb