]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/dollar-star3.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / dollar-star3.sub
CommitLineData
3185942a
JA
1IFS=/
2#file=/mnt/cdrom/RedHat/RPMS
3#recho "${file[*]:0:3}"
4
5i[0]=fooq
6i[1]=
7i[2]=barq
8i[3]=
9recho "${i[*]:0}"
10recho "${i[@]:0}"
11
12recho "${i[*]/q/!}"
13recho "${i[@]/q/!}"
14
15recho "${i[*]#?}"
16recho "${i[@]#?}"
17
18# Need to complete this with case-modifying expansion examples