[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bash-4-2 issue
From: |
Grisha Levit |
Subject: |
Re: bash-4-2 issue |
Date: |
Wed, 10 Jan 2024 19:03:01 -0500 |
On Wed, Jan 10, 2024 at 5:33 PM Grisha Levit <grishalevit@gmail.com> wrote:
> I'm not sure this is fixed. In all versions, including 4.2 [...]
>
> $ bash -m -c 'trap /usr/bin/true DEBUG; :|:'
> bash: child setpgid (49581 to 49579): Operation not permitted
Correction, versions prior to 4.3 did not respect the -m flag at invocation,
so the command should be:
bash -c 'set -m; trap /usr/bin/true DEBUG; :|:'