Leaving the remote script running. is this possible? I want to move on to other parts of the local script which initiated the remote one, the console screen keeps getting interrupted with output from the remote.
I am running a script.sh
file, the script execute an application.
I am trying to break the connection after running the script and continue with my fabfile. Today the run command hangs out.
The syntax that works in bash for me:
ssh user@server ".... script.sh &> /dev/null &" &
How can I do it in my fabfile?