In the remote server, I have a test.sh script like:
#!/bin/bash echo "I'm here!" nohup sleep 100&
From local, I run "fab runtest" to call remote test.sh.
def runtest(): run('xxxx/test.sh')
I can get the output "I'm here!", But I can not find the sleep process in the remote server. What did I miss?
Thanks!
source share