Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
jobs -r doesn't show jobs continued by kill -CONT
- X-seq: zsh-workers 35025
- From: Han Pingtian <hanpt@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: jobs -r doesn't show jobs continued by kill -CONT
- Date: Mon, 4 May 2015 06:52:13 +0800
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mail-followup-to: zsh-workers@xxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
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