I'm trying to launch a program from the Terminal in such a way that the following occurs:
- Closing the Terminal does not close the program
- The program is not outputting anything to the Terminal while opening, using, or closing
- The Terminal is free to be used for other things
- The command is short and sweet
- There is no output file to worry about
screen -mdS xyz <command> &
. – Pandya Apr 16 '15 at 15:17