#!/bin/bash# 第一部分 ret=$(ps aux | grep -v grep) # 没问题 echo $ret# 第二部分 cmd=\'ps aux | grep -v grep\' # 管道有问题 | ret=$($cmd) echo $retHow ...
#!/bin/bash
# 1st part
ret=$(ps aux | grep -v grep) # thats OK
echo $ret
# 2nd part
cmd="ps aux | grep -v grep" # a problem with the pipe |
ret=$($cmd)
echo $ret
我怎样才能像在第二部分中那样使用命令字符串?我认为管道是问题所在。尝试过逃避它,但没有帮助。得到一些 ps 的 snytax 错误。