Is it possible to do this? For example if I run "gedit tifatul.txt" via the command line, my terminal becomes blocked and I can't enter other command in this terminal before I quit gedit. Can I start a program (like gedit) without blocking the terminal? In windows I think this can be done like "start notepad tifatul.txt"
Asked
Active
Viewed 1.2e+01k times
63
TifatulS
- 1,335
2 Answers
81
Just add & at the end of the command. This makes the new process to run in background and you can continue using your terminal. For example: gedit new_file.txt &
Daniel Yuste Aroca
- 1,691
28
I would like to recommend you nohup gedit filename &. Simply gedit filename &, you're bearing the risk to accidentally close the terminal and lose your edit. If you don't like nohup.out being created each time, just redirect the output:
nohup gedit filename > /dev/null &
frozen-flame
- 491
- 2
- 6
- 9