Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: How to end "do" with Ctrl-C

by pfaut (Priest)
on Dec 02, 2008 at 22:33 UTC ( [id://727508]=note: print w/replies, xml ) Need Help??


in reply to How to end "do" with Ctrl-C

You need to trap the INT signal.

our $stopit = 0; $SIG{INT} = sub { $stopit++; }; while (!$stopit) { system("netstat -an | grep $line"); sleep 10; }
90% of every Perl application is already written.
dragonchild

Replies are listed 'Best First'.
Re^2: How to end "do" with Ctrl-C
by kennethk (Abbot) on Dec 02, 2008 at 23:03 UTC
    Yeah, what pfaut said. As an additional note, your chomp removes the end line, so your test would always pass. If you really want to catch bad input, you could try:
    use strict; my $port = shift; our $stopit = 0; $SIG{INT} = sub { $stopit++; }; if (!$port or $port =~ /\D/) { print "usage: program port_num\n"; } else { while (!$stopit) { print system("netstat -an | grep $port"), "\n"; sleep 10; } }

    or whatever variant will get you what you want.

      print system("netstat -an | grep $port"), "\n";

      That should be

      system("netstat -an | grep $port");

      or

      print qx{netstat -an | grep $port};

      or

      print grep /$port/, qx{netstat -an};
      Thank you, works great!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-25 09:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found