My mind is drawing a blank here and Google searches are not finding what I need. When launching an application from the command line what is the switch that disassociates that app with the command line window?
Posted: 6/12/2009 2:41:18 PM EDT
[#1]
&?
That backgrounds it
nohup command &
may be what you need.
Posted: 6/12/2009 2:49:07 PM EDT
[#2]
You can start the command like:
xeyes &
or if you've started it and want to background it hit control-z and then type in bg <enter>
-Foxxz
Posted: 6/12/2009 2:58:06 PM EDT
[#3]
Yup, thanks guys.
application &
is what I was looking for.
Posted: 6/12/2009 4:57:26 PM EDT
[#4]
A single ampersand.
I don't know about other shells, but on bash anyways.
Two ampersands executes another command after the first one has finished.