嵌套引号bash

时间:2013-09-18 19:40:18

标签: string bash shell command nested

我想嵌套多个这样的字符串:

sudo ssh server "awk "/pattern/{print "hello"}1" file > file.tmp"

使用2个嵌套引号,我设法让我的命令工作:

awk "/pattern/{print \"hello\"}1" file > file.tmp

我不能使用单引号('),因为我的命令中有变量。 有人能帮助我吗?

提前致谢。

1 个答案:

答案 0 :(得分:11)

只要在远程服务器上的shell上执行整个命令字符串之前,最初要扩展变量,您仍然可以放置单引号。

sudo ssh server "echo \"$SOMEVAR\"; awk '/pattern/{print \"hello\"}1' file > file.tmp"