Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: quiting program

by maverick (Curate)
on May 31, 2002 at 19:40 UTC ( [id://170814]=note: print w/replies, xml ) Need Help??


in reply to quiting program

You'll need to setup a signal handler to catch the ctrl-c.
my $num_ctrlc = 0; $SIG{'INT'} = sub { $num_ctrlc++; print "Got $num_ctrlc ctrl-c\n"; exit if $num_ctrlc > 2; }; # rest of program
The $SIG{'INT'} part creates a signal handler for 'interrupt' (control-c) with your code. In this case, a little sub that increments a global counter, prints a message, and exists if the counter is above a certain number

BTW, your while loop is only going to run once, since @a will contain ALL of STDIN on the first pass... Perhaps you meant something more like:

while ($a = <STDIN>) { print $a; }
HTH

/\/\averick
OmG! They killed tilly! You *bleep*!!

Replies are listed 'Best First'.
Re^2: quiting program
by particle (Vicar) on May 31, 2002 at 20:43 UTC
    your code is probably better implemented as a closure. then there's no special variable in the same scope as your code.

    { my $num_ctrlc = 0; $SIG{'INT'} = sub { print "Got " . ++$num_ctrlc . " ctrl-c\n"; exit if $num_ctrlc > 2; } }

    ~Particle *accelerates*

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://170814]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (8)
As of 2024-04-23 09:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found