嗨
我需要通过ssh运行脚本的pid。
ssh some.host './script &' #get the pid of it
到目前为止我尝试的一些代码:
ssh some.host './script & ; echo $!'
nohup ssh some.host '( ./script & ); echo $! > thePID'; ssh some.host 'cat thePID'
任何消化?
答案 0 :(得分:2)
ssh some.host './script & echo $!'
答案 1 :(得分:0)
据我记得,应该是这个 -
./script & echo $!
不
;