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.
#!/bin/ksh
unset IFS
while read LINE
do
LOGFILE=${1:-logfile}.$(date '+%Y%m%d').log
print "${LINE}" >> ${LOGFILE}
done
nohup myscript.sh 2>%1 | ./logger myscript &