v1.1.6
Improvement of Job Control
Job control and some features are added to this shell. See additional test cases between v1.1.5 and v1.1.6 in our test.
The number of passed test scripts (run-***) in Bash repo increased from 15 to 20.
additions and corrections
- addition of
disown
,kill
, andhash
commands - implementation of behaviors of
wait
at-n
option
π£ sleep 10 &
16279
π£ wait -p a -n %%
π£ echo $a
16279
- enabled to set a pid to a variable with
wait
- tilde expansions after = and :
π£ echo A=~/:~/:~/
A=/home/ueda/:/home/ueda/:/home/ueda/
- enabled to use a jobspec lika a command
π£ sleep 10 &
16110
π£ %%
sleep 10
- fixed behavior of the shell at definition/use of aliases
### examples ###
π£ alias a='echo A'
π£ a a
A a
π£ alias a='echo A '
π£ a a
A echo A
π£ alias a='echo abc \'
π£ a|rev
abc |rev
π£ a |rev
cba
Full Changelog: v1.1.5...v1.1.6