trap command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers trap command
# 1  
Old 04-07-2011
trap command

I'm learning about the trap command from my bash book. I tried out the little script they gave:
Code:
trap "echo 'You hit control-C!' " INT
while true; do
	sleep 60
done

But when I type control-c, the script just stops and the message is not displayed. I checked stty all and saw that control-c is intr, but the same thing happened whet I tried that. Can anyone tell me what I'm missing?

I'm using terminal (BSD) in OS X

Last edited by Scott; 04-07-2011 at 08:37 PM.. Reason: Code tags, please...
# 2  
Old 04-07-2011
kill -l (lowercase L) lists the names of your signals. stty -a shows terminal settings.

Look for something like these in login profiles:
Code:
trap "" 2 3
trap 2 3
trap 'exit' 2
trap 'kill $$' 2

SIGINT = 2 on almost all systems.

The first turns off the signal in your login profile(s). trap 2 3 enables them. trap 'exit' 2
specificaly converts SIGINT into an exit command. trap 'kill $$' converts SIGINT into SIGTERM the default for kill.
# 3  
Old 04-07-2011
I don't follow. Why would my book use int instead of numbers?

And when I run the script and control-c all I get is

^C

on the screen and the cursor keeps blinking
# 4  
Old 04-07-2011
The syntax of the command is
Code:
trap  "command "  [signal name or signal number]

So, that said, you want to see if a trap already exists in your shell. I would say that yes, one does. And it ignores SIGINT (or 2). Why it exists I can't say. You need to work on that one. So, that is why I suggest looking at all of the various login profiles you have on your box. /etc/profile, $HOME/.profile, .kshrc, or .bashrc ---- whatever.
# 5  
Old 04-07-2011
I agree with the rest that the signal is somehow disabled.

Whether you have INT or 2 in the signal name, this could be a better construct for a test script because it lets you exit the script.

Code:
trap 'echo You hit control-C!;exit' INT
while true; do
sleep 60
done

Perhaps try positively setting the key as the first line of the script.
Code:
stty intr '^C'

# 6  
Old 04-08-2011
Methyl:
I tried setting the key but it didn't work:

stty: illegal option -- INT
usage: stty [-a|-e|-g] [-f file] [options]
trap: usage: trap [-lp] [arg signal_spec ...]


I wish I had a unix manual of some sort --

I typed trap -l and got this (on my iMac at home -- still the same result when I ran the script) :

1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL
5) SIGTRAP 6) SIGABRT 7) SIGEMT 8) SIGFPE
9) SIGKILL 10) SIGBUS 11) SIGSEGV 12) SIGSYS
13) SIGPIPE 14) SIGALRM 15) SIGTERM 16) SIGURG
17) SIGSTOP 18) SIGTSTP 19) SIGCONT 20) SIGCHLD
21) SIGTTIN 22) SIGTTOU 23) SIGIO 24) SIGXCPU
25) SIGXFSZ 26) SIGVTALRM 27) SIGPROF 28) SIGWINCH
29) SIGINFO 30) SIGUSR1 31) SIGUSR2

so I'm guessing that the interrupt signal is SIGINT.

Even with this, the same thing happens -- ^C is displayed on the screen and it goes right back to the script. If I type control z it says this :

[1]+ Stopped sleep 60

and goes right back to the script -- and the job number increases by one every time I type it. I can't stop the script from running. The only way I can is to quit terminal, at which point I get a message saying the following processes will be stopped -- bash, and however many sleep jobs it's running.

Last edited by Straitsfan; 04-08-2011 at 11:22 AM..
# 7  
Old 07-06-2011
Methyl -- and anyone else:

It's been a while since I've been here, but I've got something else.

I fooled around with some other scripts and got it to print a message -- are you getting it to display the message?

Here's a script that I did today:

Quote:
trap "echo 'You interrupted me.' " SIGINT
let x=0
while true; do
echo $x

let x=x+1
done

It works fine -- the numbers zip by and get larger and larger. If I hit control - c I can see the message -- it's only a flash. If I put sleep 10 in the script after the echo command,and hit control-c, all I get is ^C displayed on the screen, but no message. I'm wondering if the message is displayed briefly, but so quickly that I can't see it. Am I not typing the command correctly and not noticing it, maybe?


If i try this script

Quote:
trap "echo 'You interrupted me.' " SIGINT
while true; do
echo enter a number
read x
echo $x
done
It works fine. The message is displayed:

Quote:
enter a number
ths
ths
enter a number
^CYou interrupted me.
I think it has something to do with the sleep command, but I can't figure out why. Do you have any ideas?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trap command not working

Hi Folks - For some reason, my trap command is not working. It's placed just prior to a normal exit: #:: ------------------------------------------------------------------------ #::-- Script Name: LCM_Backup.sh #:: #::-- Description: This script leverages Utility.sh to perform LCM... (16 Replies)
Discussion started by: SIMMS7400
16 Replies

2. Homework & Coursework Questions

VM trap may work differently than a pure install trap.

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: That is the last reply I received from my instructor, and I'm looking for some alternatives. When using... (2 Replies)
Discussion started by: newuser45
2 Replies

3. Shell Programming and Scripting

trap command

dear all; I can't under stand what does "trap" command do: for example see below: trap "echo; echo no interrupts >&2; sleep 3" 2 3 15 Plz , can any body explain the action of this command? BR (3 Replies)
Discussion started by: ahmad.diab
3 Replies

4. UNIX for Advanced & Expert Users

trap command

Hello experts! I need to know the use of trap command please In one of our program we have trap "rm -f temp1 ; exit 1" 1 2 15 0 and program always exit with 1 there is a rm -f temp1 as well at the end of the program as rm -f temp1 exit 0 when I test a probram with set... (4 Replies)
Discussion started by: ramshree01
4 Replies

5. Shell Programming and Scripting

Cntl+z Trap is not detecting ??? Help required to add a trap detection ???

Hi folks, I have tried to add some trap detection in the below script....this script is used to monitor database activities...in a rather awkward way :rolleyes:.... The idea behind adding trap is that....this script creates lots of temporary files in the running folder to store the count... (1 Reply)
Discussion started by: frozensmilz
1 Replies

6. Shell Programming and Scripting

Use of TRAP Command

Hi, I would like to know the use of TRAP command. I am very new to the UNIX environment. I have just started learning the basic. So please teach me in a very simple way to understand. Also i would like to know the use of following command: trap 'dialog --msgbox "Script Aborted1" 6 50 ;... (2 Replies)
Discussion started by: Deepakh
2 Replies

7. Programming

trap command in Unix

Could anybody tell me what the trap command does and how it performs the action it does. I had read the trap manual page but it is too concise that nothing is clear about it. Please tell how it works. (1 Reply)
Discussion started by: mobile01
1 Replies

8. UNIX for Dummies Questions & Answers

trap command

Dear All could you please explain me what does the trap command do and how I can write a program which can work as a trap command(in C Language). (1 Reply)
Discussion started by: mobile01
1 Replies

9. UNIX for Dummies Questions & Answers

trap command

i have the following script that displays the current time until the user presses CTR + c.... but it does not work properly.... Something is not right with the trap command... Help plz... :confused: # script to continuously display current time. # if script is terminated trap signal... (3 Replies)
Discussion started by: onlyc
3 Replies

10. Shell Programming and Scripting

Using TRAP command

I'm using the trap command to capture any signals received whilst my script is running. How's the best way of writing the signal and any other error messages to a file/error log' without having to type '2>$1' on the command line after the script name? Cheers (3 Replies)
Discussion started by: dbrundrett
3 Replies
Login or Register to Ask a Question