User Tools

Site Tools


blog:how_to_trap_interrupts_in_the_bash_shell

How to trap interrupts in the bash shell

#!/bin/bash
 
myCleanup() {
  rm -f /myapp/tmp/mylog
  return $?
}
 
myExit() {
  echo -en "\n*** Exiting ***\n"
  myCleanup
  exit $?
}
 
trap myExit SIGINT
 
# main loop
while true
do
    echo -n "Enter your name: "
    read x
    echo "Hello $x"
done

Ref: http://mariusvw.com/2010/05/18/how-to-trap-catch-keyboard-interrupt-in-bash-on-linux-freebsd/

~~LINKBACK~~

Discussion

Enter your comment. Wiki syntax is allowed:
  __  __ ______  ____   ____   _____
 / / / //_  __/ / __ \ / __ \ / ___/
/ /_/ /  / /   / /_/ // /_/ // /__  
\____/  /_/    \____/ \____/ \___/
 
blog/how_to_trap_interrupts_in_the_bash_shell.txt · Last modified: 2011-02-16 20:15 by brb