What does the trailing & do in ./some_command.sh &?
&
./some_command.sh &
Launches the script as a background child process so the parent can continue
Turns the script invocation into a comment
Makes the parent wait immediately for that script to finish
Combines the script's output with the next command's input