I'm challenging myself for the next few weeks to use a terminal emulator as my main file manager.
I've run into a question: how do I open a file (e.g. an Inkscape .svg) in it's GUI program from the command line? I know I can use:
inkscape ./Design.svg &
to move it to the background, but it's still a child of the gnome-terminal
process (and dies with it). Additionally, any debug warnings, etc will be output to that terminal (interrupting and annoying me).
How does a file manager like Nautilus split off launched editor processes in a way that they are no longer attached at all?
How can I do that from my terminal?
inkscape Design.svg & disown
or in ZSHinkscape Design.svg &|
or&!
to save typingdisown
. – thrig Jan 15 '16 at 19:44