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.
VAR=abcdef
STR=def
[[ ${VAR} = @(*${STR}) ]] && print "VAR ends with ${STR}"
# or
if [[ ${VAR} = @(*${STR}) ]]
then
print "VAR ends with ${STR}"
fi
unset IFS
while read LINE
do
# Skip comments
[[ ${LINE} = @(#*) ]] && continue
# Skip blank lines
[[ -z ${LINE} ]] && continue
# Process the line from here...
done < my.conf