v1.2.4
Addition of features
This version additionally passed the test cases in https://github.com/shellgei/rusty_bash_test/blob/v1.2.4/test_fixed.bash .
What's Changed
- Supported coprocess (
coproccommand)
π£ coproc HOGE { while read A ; do echo "HOGE" $A ; done ; }
[1] 365259
π£ echo bbb >&${HOGE[1]}
π£ read V <&${HOGE[0]}
π£ echo $V
HOGE bbb
π£ echo ccc >&${HOGE[1]}
π£ read V <&${HOGE[0]}
π£ echo $V
HOGE ccc
π£ jobs
[1]+ Running coproc HOGE { while read A ; do echo "HOGE" $A ; done ; } &
π£ kill %1
π£ jobs
[1]+ Done coproc HOGE { while read A ; do echo "HOGE" $A ; done ; }
π£ jobs
π£- Supported nameref
π£ A=123
π£ declare -n B=A # B becomes a reference of A
π£ B=xyz
π£ echo $A
xyz-
Spported
FUNCNUMEandBASH_LINENO -
Impremented
callerroughly -
Fixed clippy warnings by @LifelessPumpkin in #172
-
Fixed bugs around arrays
New Contributors
- @LifelessPumpkin made their first contribution in #172
Full Changelog: v1.2.3...v1.2.4