PDA

View Full Version : [all variants] How to clean start GTK Apps from Terminal



jk.cheng
December 4th, 2009, 10:27 AM
assume i want to open a file call sample.txt in home using gedit from terminal. How can i do it clean without leaving any hang-out or log in the terminal?

I have try both command below to send thing to bg, but it still show some output:
1. gedit ~/sample.txt & > /dev/null
2. gedit ~/sample.txt > /dev/null &

Any idea what else can i try?

VCoolio
December 4th, 2009, 01:18 PM
nohup gedit filename > /dev/null 2>&1 &

Nohup means you can close the terminal and have gedit still running.
> /dev/null means stderr messages are redirected to nothing.
2>&1 means stdout messages are redirected to stderr, which was already redirected nothing, so no output anymore.
& means it goes to the background, so you'll just see a pid and then the terminal is available.