Com dd
você pode ler com confiança um único byte de um arquivo. Com stty
, você pode definir um número de bytes min
para qualificar um terminal lido e um time
em décimos de segundo. Combine esses dois e você pode fazer sem sleep
inteiramente, eu acho, e apenas deixe o tempo limite de leitura do terminal fazer o trabalho para você:
s=$(stty -g </dev/tty)
(while stty raw -echo isig time 20 min 0;test -z "$(
dd bs=1 count=1 2>/dev/null; stty "$s")" || (exec sh)
do echo "$SECONDS:" do your stuff here maybe
echo no sleep necessary, I think
[ "$((i+=1))" -gt 10 ] && exit
done
) </dev/tty
Esse é um pequeno exemplo while
loop que eu fiz para você experimentar. A cada dois segundos, dd
expira em sua tentativa de leitura de stdin
- redirecionado de /dev/tty
- e% lo_de% loop loops. Isso ou while
não esgotam o tempo limite porque você pressiona uma tecla - nesse caso, um shell interativo é invocado.
Aqui está uma execução de teste - os números impressos na cabeça de cada linha são o valor da variável de shell dd
:
273315: do your stuff here maybe
no sleep necessary, I think
273317: do your stuff here maybe
no sleep necessary, I think
273319: do your stuff here maybe
no sleep necessary, I think
273321: do your stuff here maybe
no sleep necessary, I think
sh-4.3$ : if you press a key you get an interactive shell
sh-4.3$ : this example loop quits after ten iterations
sh-4.3$ : or if this shell exits with a non-zero exit status
sh-4.3$ : and speaking of which, to do so you just...
sh-4.3$ exit
exit
273385: do your stuff here maybe
no sleep necessary, I think
273387: do your stuff here maybe
no sleep necessary, I think
273389: do your stuff here maybe
no sleep necessary, I think
273391: do your stuff here maybe
no sleep necessary, I think
273393: do your stuff here maybe
no sleep necessary, I think
273395: do your stuff here maybe
no sleep necessary, I think
273397: do your stuff here maybe
no sleep necessary, I think