]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/dollar-star5.sub
Bash-4.3 patch 22
[thirdparty/bash.git] / tests / dollar-star5.sub
CommitLineData
495aee44
CR
1set -- a b
2IFS=
3
4echo $*
5echo "$*"
6
7a=abcd
8echo "${a#$*}"
9
10case ab in
11$*) echo ok 1;;
12esac
13
14case $* in
15ab) echo ok 2 ;;
16esac