Sujet : Re: When/why does the shell (bash) (sometimes) not re-cycle job IDs?
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.unix.shellDate : 12. May 2024, 22:46:35
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v1r9rb$2vljb$4@dont-email.me>
References : 1 2 3 4
User-Agent : Pan/0.155 (Kherson; fc5a80b8)
On Sun, 12 May 2024 09:47:16 -0000 (UTC), Christian Weisgerber wrote:
On 2024-05-12, Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
>
Job numbers are reused after it has notified you of termination of the
previous job. At least in Bash.
Demonstrably false:
Works for me:
ldo@theon:~> sleep 10 &
[1] 1094669
ldo@theon:~> sleep 1 &
[2] 1094670
ldo@theon:~>
[2]+ Done sleep 1
ldo@theon:~> sleep 1 &
[2] 1094671