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.
while more file to read
do
...
until $a equals 1 OR end of file
do
...
done
until $b equals 1 OR end of file
do
...
done
...
done
while read line
do
...
while read line
do
...
...
[[ $a -eq 1 ]] && break
done
while read line
do
...
...
[[ $b -eq 1 ]] && break
done
...
done