Skip to content

v0.8.11

Compare
Choose a tag to compare
@ryuichiueda ryuichiueda released this 10 Nov 12:04
· 2005 commits to main since this release

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