Then terminating the parent process will terminate the child. You can halt execution of whatever logic/actions in the first script, but it's process must live for the child to not be terminated.
user559633
–
user559633
2014-12-23 19:46:37 +00:00
CommentedDec 23, 2014 at 19:46
1
Not always, you can disown a process, making it run independently of its parent. "that other guy" already gave you an answer, just add a & to the end of the process call. Read more about disowning processes here (found from a quick google search).
./second &disowna process, making it run independently of its parent. "that other guy" already gave you an answer, just add a&to the end of the process call. Read more about disowning processes here (found from a quick google search).