&

From Linuxintro
Revision as of 14:05, 12 January 2014 by imported>ThorstenStaerk (Created page with "& is a bash operator telling the system to start a command in the background. For example the command firefox & will allow you to continue executing commands in the ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

& is a bash operator telling the system to start a command in the background. For example the command

firefox & 

will allow you to continue executing commands in the console while firefox is started and run in parallel.