What happens when & is appended to a shell command such as sleep 600 &?
&
sleep 600 &
The command is saved to run after the next reboot.
The shell waits for the command to finish before showing a prompt.
The shell ignores the command and does not start a process.
The command runs as a background job and the shell promptly accepts more input.