Hi bibo01
#!/bin/sh
sleep 10
start_jack
sleep 5
jack_load netmanager
I'm not familiar with the use of jack and assume if you execute those commands from the command line they work.
If your start_jack script is written so it does not return to a command promt, you'll need to background it like this:
start_jack &
Yes, those commands almost work.
There is just a little hicup...
From command line I run start_jack with: ./start_jack
However, because of an error which does not stop jack from starting, I do not go back to prompt.
If I write "start_jack &", I go back to prompt only after pressing Enter.
Can you please tell me what I require to go back to prompt during a script?
PS: I told you I was a newbie