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 X in 1 2 3 4 5
do
print "X is ${X}"
done
#!/bin/ksh
touch ./0 1 2 3 4 5 6 7 8 9
for X in [3-7]
do
print "X is ${X}"
done
rm [0-9]