ssh在后台运行脚本并获取其pid

时间:2017-06-04 19:29:34

标签: bash ssh


我需要通过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'

任何消化?

2 个答案:

答案 0 :(得分:2)

ssh some.host './script & echo $!'

答案 1 :(得分:0)

据我记得,应该是这个 -

./script & echo $!

;