Answers for "open gedit from terminal without blocking"

1

open gedit from terminal without blocking

# & is used to run the file in the background
# Warning: this command will close the gedit if you close terminal
gedit filename &

# to stop gedit from closing even after you closed the terminal 
# add disown
gedit filename & disown
Posted by: Guest on May-07-2021

Code answers related to "open gedit from terminal without blocking"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language