Skip to main content
Search
Search This Blog
THE TECHMAN
Tech projects & other miscellaneous tech stuff
I have a great newsletter for active technical minds. Help me grow it.
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
computers
Linux
January 28, 2021
How to run a Linux bash script that keeps running after the terminal that started it is closed?
Easy peasy. If the bash script is called
script.sh
Start it like this:
nohup script.sh &
You can now close the terminal and the script will continue to run.
Comments
Comments