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
MAX=2
ps -auxw | \
egrep -v "^root|^daemon|^bin" | \
egrep -v "gcc|make|cc|USER" | \
awk '{print $1}' | \
sort | uniq -c | sort -rn | \
while read COUNT USER
do
if (( COUNT > MAX ))
then
print "Killing User ${USER}, ${COUNT} processes!"
#pkill -U ${USER}
fi
done
ps -U stefan