Files
hpr_website/www/eps/hpr2659/hpr2659_bash11_ex3.sh

10 lines
186 B
Bash
Executable File

#!/bin/bash
#
# String comparison with a pattern, using an 'extglob' type pattern
#
str="Further ancillary Bash tips - 11"
if [[ $str == +([[:alnum:] -]) ]]; then
echo "Matched"
fi