Bash Shell Scripting Disable Control-C [ CTRL+C ] Keys

by Vivek Gite on August 14, 2006 · 0 comments

I want to disable Control-C while running shell bash script program under UNIX / Linux like operating systems. How do I disable Control-C?

You need to use the trap command which can enable or disable keyboard keys such as Crtl-C. SIGINT is Crtl-C and it is represented using number 2. Signal names are case insensitive and the SIG prefix is optional. trap -l prints list of signal names and their corresponding numbers. Note that a signal can be sent to the shell with "kill -signal $$".

Syntax

# Signal 2 is Ctrl+C
# Okay disable it:
trap '' 2
command1
command2
command3
# Enable Ctrl+C
trap 2

Here is a sample shell script:

#!/bin/bash
trap '' 2
echo "This is a test. Hit [Ctrl+C] to test it..."
sleep 20
trap 2

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 7 + 8 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: