linux - Why is my bash script that executes another script not exiting? -
i'm calling script bash script -- ampersand.
otherscriptthatdoesnotexit & echo "done"
i see getting "done" still see original script running ps. idea why be? (note, i'm running on puppy linux)
the script still waiting on subprocess spawned. use nohup
, disown
or screen
leave long running task in background , shell.
Comments
Post a Comment