punchykool
MIS
can I force a script to run in the background without having my users place an ampersand at the end of the command line? nohup?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if ( $#argv > 0 && $argv[1] == "--in-background") then
shift
else
$0 --in-background $* &
exit
endif