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.
for i in `cut -d: -f1 /etc/passwd`
#probably DON'T want to do this!!
do
passwd -f $i
done
cut -d: -f1 /etc/passwd > somefile
# edit somefile to leave desired members
for i in `cat somefile`
do
passwd -f $i
done
while read i
do
passwd -f $i
done < somefile