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