v0.8.11
Fixed bugs
- Fixed no reaction toward an index designation on referring a special parameter
### before ###
π£ echo ${@[1]}
π£ echo $?
0
### after ###
π£ echo ${@[1]}
sush: ${@[1]}: bad substitution
π£ echo $?
1
- Fixed wrong word splitting on
$@ and $ {array[@]} in a double quoted subword
### before ###
π£ set a b c ; for x in "@$@x" ; do echo $x ; done
@a
b
### after ###
π£ set a b c ; for x in "@$@x" ; do echo $x ; done
@a
b
cx