trapping-ctrl-c-em-bash descreve como interceptar CTRL + C para acionar alguma ação.
Por favor, verifique sua conta root
( bashrc
etc), se você está executando uma armadilha similar para forçar logout ao pressionar CTRL + C
Trapping ctrl-c in Bash
You can use the trap builtin to handle a user pressing ctrl-c during the execution of a Bash script. e.g. if you need to perform some cleanup functions.
#!/bin/bash # trap ctrl-c and call ctrl_c() trap ctrl_c INT function ctrl_c() { echo "** Trapped CTRL-C" } for i in 'seq 1 5'; do sleep 1 echo -n "." done