In UNIX-like operating systems, the & instructs the active shell to send the command just executed to the background, which is usally a good thing, giving the user access to the shell immediately, rather than when (or if) the command just called exits.

Example:

$really-long-to-run-command &