Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

jobs -r doesn't show jobs continued by kill -CONT



Hi,

jobs -r doesn't show a job which suspended the continued by kill -CONT:

% zsh -f
localhost% sleep 50
^Z
zsh: suspended  sleep 50
localhost% jobs -r
localhost% jobs
[1]  + suspended  sleep 50
localhost% kill -CONT %1
localhost% jobs
[1]  + running    sleep 50
localhost% jobs -r
localhost% 

If the job was continued by bg, then job -r can show it.



Messages sorted by: Reverse Date, Date, Thread, Author