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 IList in `cat <ip file>.list | awk '{print $1, $2}'`; do ./runme.exp $IList; done
echo "123.321.123.10 1234" | ./runme.exp
-bash-3.00$ cat freddie.tat | while read line ; do echo $line; sleep 2; done
10.213.70.1 12345
10.213.70.2 22345
10.213.70.3 32345
10.213.70.4 42345
^C
-bash-3.00$
# cat file.list | while read line ; do ./runme.exp $line; done