Run bash script from another script without waiting for script to finish executing?
Put &
at the end of the line.
./script1.sh & #this doesn't blocks!
./script2.sh
Run the first one in background using &
and you should be good.
Put &
at the end of the line.
./script1.sh & #this doesn't blocks!
./script2.sh
Run the first one in background using &
and you should be good.