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.
typeset -i INTVAR
typeset +i STRVAR
(( $(typeset -i|grep INTVAR|wc -l) )) && print "INTVAR is an integer"
[[ $VAR = [0-9]*([0-9]) ]] && print "VAR is an Integer"
*(X)
[0-9]
ls -l *(A)
ls -l *([0-9])
ls -l *(go)
[0-9]
[0-9]*([0-9])
[[ $VAR = +([0-9]) ]] && print "VAR is an Integer"
!(*.c|*.h|*.o)
+([0-9])
@(?([-+])[1-9]*([0-9])|0)