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.
lastlog -t 365 | awk '{print $1}' | tail +2 | sort > /tmp/last12mo.$$.tmp
cut -d: -f1 /etc/passwd | sort > /tmp/allusers.$$.tmp
echo "The following users haven't logged in for more than 12 months"
echo "-------------------------------------------------------------"
comm -13 /tmp/last12mo.$$.tmp /tmp/allusers.$$.tmp
rm /tmp/*.$$.tmp