init version.
[bush.git] / tests / exp / new-exp / new-exp14.sub
blobb8bda8de5ed586863893dfa4538e3bd3c859287f
1 # test the other uses of the 'K' tranform operator
2 # the associative array tests are performed separately, since that was the
3 # original motivation for this feature
4 foo=string
5 bar='value with spaces'
7 set -- 'a b' 'c d' 'e f'
9 echo ${foo@K}
10 echo ${bar@K}
12 echo ${@@K}
13 echo "${@@K}"
15 foo=( zero one two three )
16 echo ${foo[@]@K}
18 foo=( 'zero z' 'one o' 'two t' 'three t' )
19 echo ${foo[@]@K}