Run a script in the background and let it survive after closing your terminal:
nohup bash script.sh > output.log 2>&1 & disown
✨ Useful when running long processes over SSH!
#Linux #TuxTips #TerminalMagic #DevLife #ShellScript
Run a script in the background and let it survive after closing your terminal:
nohup bash script.sh > output.log 2>&1 & disown
✨ Useful when running long processes over SSH!
#Linux #TuxTips #TerminalMagic #DevLife #ShellScript