-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
I need to execute a background program in Linux through MedallionShell, and even if the host's .net process is exited, the executed command will not be terminated. So far, this is what I have thought of is for Example:
nohup roslaunch test_launch agv.launch &
Please note that I added an '&' symbol at the end that means this command will run on background.
but this is not working , If i remove the end of '&', Then it can execute but this command Thread never end (Because it's long running processes)
I don't know the reason, or if there are any other solutions, please let me know.
The two goals I want to achieve are:
- Running the command line in the background, and
- Even if the .net Main process exits, the executed command line will not terminate.