最佳答案
如果命令是在字符串中,那么如何从 bash 脚本中在后台执行 shell 命令?
例如:
#!/bin/bash
cmd="nohup mycommand";
other_cmd="nohup othercommand";
"$cmd &";
"$othercmd &";
这样不行,我怎么能这样?