bin/sh #Test scriptje to test string comparison! testFoo () { t1=$1 t2=$2 echo "t1: $ t1 t2: $t2" if [ $t1 == "*$t2*" ]; then echo "$t1 and $t2 are equal" ...
stackoverflow.com