Help for this page
my @lines = <STDIN>;
{ local($SIG{INT}) = 'IGNORE'; @lines = <STDIN>; }
#!perl -w use strict; ... print "You entered: @lines\n"; sleep(1); }