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.
[[ "$a" = [highlight]*[/highlight]@(abc) ]] && echo ends with abc
[gray]# or just[/gray]
[[ "$a" = [highlight]*[/highlight]abc ]] && echo ends with abc
[[ "$a" = @(*abc) ]] && print "Ends with 'abc'"
STR="1 2 3 4 5"
[[ $STR = @(* 2 3 *) ]] && print "Contains ' 2 3 '"