From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,DKIM_VALID,FORGED_GMAIL_RCVD,FREEMAIL_FROM, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 31800 invoked from network); 22 Jul 2021 02:31:40 -0000 Received: from zero.zsh.org (2a02:898:31:0:48:4558:7a:7368) by inbox.vuxu.org with ESMTPUTF8; 22 Jul 2021 02:31:40 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=zsh.org; s=rsa-20200801; h=List-Archive:List-Owner:List-Post:List-Unsubscribe: List-Subscribe:List-Help:List-Id:Sender:MIME-Version: Content-Transfer-Encoding:Content-Type:Date:Subject:Message-Id:To:From: Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References; bh=ptPAF+jt2AEyd5aCVcgNKkw/busLKqRBUtZSV5kXENA=; b=uctranXtXcZiL3uCCM9HIQSML3 xAOrMUPbqGeSXJOiWMqVTVfMwLXmQodQ8hsve3Qb+gYMtmfbjZQ63DNOUOcwiCOo3rMCg5/PjGeNW 0BYpjDtJxbdFUNDi7re+FkSh6+F2eJTZ17PqlyY54lLFTweXDQPG+7Zz94HUm/DSmJ+ZAw+tEU7wT onbVUiihT0eh5H+De2uicvl9CUFRBv82x/OxVDpkP+lAluI7sc6JDQQBbyo1y4LIPsljNWD2WEuW/ HdZ1uU7OGWQwI62/B/aEpO0Xyo1+ChJQyPzsXC0otkSjDAuDlr7mKdzsqZ03PeYYIBkXztqx0uyjI INXq96Cg==; Received: from authenticated user by zero.zsh.org with local id 1m6OUt-000NBA-Kd; Thu, 22 Jul 2021 02:31:39 +0000 From: bagnaramatt@gmail.com To: zsh-users@zsh.org Message-Id: Subject: Trapping Real Time Signals in ZSH Date: Thu, 22 Jul 2021 02:30:53 +0000 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7BIT MIME-Version: 1.0 X-Mailer: Sympa 6.2.62 X-Seq: 26791 Archived-At: X-Loop: zsh-users@zsh.org Errors-To: zsh-users-owner@zsh.org Precedence: list Precedence: bulk Sender: zsh-users-request@zsh.org X-no-archive: yes List-Id: List-Help: List-Subscribe: List-Unsubscribe: List-Post: List-Owner: List-Archive: In bash the trap builtin is able to handle all signals including SRTMIN- SIGRTMAX. In ZSH the kill builtin dos not provide the ability to utilize all of there signals. Is there any supported way to handle trapping real-time signals in ZSH?