Do lines in a bash script execute sequentially? I can\'t see any reason why not, but I am really new to bash scripting and I have a couple commands that need to execute in o
Yes... unless you go out of your way to run one of the commands in the background, one will finish before the next one starts.