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.
#!/usr/bin/ksh
set -A services "'string 1' 'string 2' 'string 3'"
for i in $services
do
echo $i
done
#!/bin/ksh
s1='string 1'
s2='string 2'
IFS='
'
set -A services ${s1} ${s2}
typeset -i i=0
while (( i < ${#services[*]} ))
do
print "i->[${i}] services->[${services[$i]}]"
(( i=i+1 ))
done