linux - Run emacs as separate process from terminal -
when run emacs
text editor process not return cannot use terminal default behavior.
i cannot find switch or command in man
know simple.
how can run emacs
separate process can continue use terminal without opening second one?
you can start program in background appending ampersand command, emacs &
.
there's whole framework working backgrounded processes, see example man jobs
, disown
, fg
, bg
, , try ctrl-z
on running process, suspend , give terminal, allowing resume process either in foreground or background @ pleasure. when shell closes, programs end, disown
allows tell program keep running after end session.
Comments
Post a Comment