0
votes
2answers
187 views
Getting the pid of a job launched in the background remotely
I am trying to launch in the background a job on a remote machine and get its PID so that I can kill it later on. What I have come up with so far is the following:
#!/bin/bash
IP=x …
