What does appending & to a shell command do?
&
Starts the command in the background so the shell can continue without waiting for it.
Runs two identical foreground copies of the command.
Guarantees that the command's exit status is always zero.
Forces the shell to wait until the command finishes.