[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] sleep builtin signal handling
From: |
Phi Debian |
Subject: |
Re: [PATCH] sleep builtin signal handling |
Date: |
Fri, 30 Jun 2023 08:50:35 +0200 |
Strange, on BASH_VERSION='5.1.16(1)-release' sleep don't get interupted by
SIGWINCH
┌─none:/home/phi
└─PW$ trap 'echo $LINES.$COLUMNS' SIGWINCH
┌─none:/home/phi # Resizing window here
└─PW$ 79.80
└─PW$ 78.80
└─PW$ 77.80
└─PW$ 76.80
└─PW$ 75.80
^C
┌─none:/home/phi
└─PW$ sleep 11111111 # Resizing window here, sleep is not interupted
^C
┌─none:/home/phi
└─PW$