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
for USER in 0 1 2 3 4 5 6 7
do
for GROUP in 0 1 2 3 4 5 6 7
do
for OTHER in 0 1 2 3 4 5 6 7
do
print -n "$USER$GROUP$OTHER\r"
umask $USER$GROUP$OTHER
touch umask.$USER$GROUP$OTHER.f
mkdir umask.$USER$GROUP$OTHER.d
done
done
done
print "Done!"