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.
#!/usr/bin/ksh
if [[ $# -lt 1 ]]
then
print "usage: $0 <pids> ..."
exit 1
fi
while [[ -n "$1" ]]
do
if print $1 | egrep -qx '[0-9]+' && ps -p $1 > /dev/null
then
print kill -3 $1
else
print "invalid or non-existent process: $1"
exit 2
fi
shift
done