$cat test.sh
ssh HOST -l root -o StrictHostKeyChecking=no -q "/bin/bash -l -c /bin/env | grep -w PATH | grep '\;.'"
$bash -x test.sh
+ ssh HOST -l root -o StrictHostKeyChecking=no -q '/bin/bash -l -c /bin/env | grep -w PATH | grep '\''\;.'\'''
答え1
これはSSHには関係ありません。 bashの引数は、コマンドの引数を拡張形式で表示する-x
bashコマンドの引数です。set
これが二重引用符で囲まれた文字列が一重引用符で囲まれた文字列として表示される理由です。
$ cat test.sh
echo "here are 'some single quotes' inside double quotes"
$ bash -x test.sh
+ echo 'here are '\''some single quotes'\'' inside double quotes'
here are 'some single quotes' inside double quotes