http://www.perlmonks.org?node_id=170814


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*