Update slurm authored by Matthieu Boileau's avatar Matthieu Boileau
......@@ -119,7 +119,9 @@ Then you can launch the application with `sbatch <name_of_the_script>`.
One way is to send the scripts out of the ssh session using this command
ssh user@host "nohup script1 > /dev/null 2>&1 &; nohup script2; ..."
```
ssh user@host "nohup script1 > /dev/null 2>&1 &; nohup script2; ...
```
Note: Be careful, you can't use nohup in your ssh session. Why ? When you exit your ssh session, a SIGTERM signal is sent which will close all process with the user UID (Even background ones).
......
......