运行 远程命令 returns 意外输出

Running commands remotely returns unexpected output

我想远程终止一个进程,我使用这样的 ssh -i 命令:

ssh -i $app_rsa_file_path $app_server_user@$app_server_ip "ps aux | grep java | grep billing | awk '{print }' | xargs kill -9 > /dev/null 2>&1"

如果我运行直接在服务器上命令,它工作正常;但在远程版本中 awk 似乎没有效果,命令将 ps aux | grep java | grep billing 的整个输出传递给 kill 我得到这个:

kill: invalid option -- 'D'

Usage:
 kill [options] <pid> [...]

Options:
 <pid> [...]            send signal to every <pid> listed
 -<signal>, -s, --signal <signal>
                        specify the <signal> to be sent
 -l, --list=[<signal>]  list all signal names, or convert one to a name
 -L, --table            list all signal names in a nice table

 -h, --help     display this help and exit
 -V, --version  output version information and exit

For more details see kill(1).

知道原因吗?

你使用双引号 " 所以你需要转义 $ 特殊字符: