- or download this
#! perl -slw
use strict;
...
sleep 1;
warn "$0 still running\n";
}
- or download this
#! perl -slw
use strict;
...
chomp;
print localtime() . " Got: '$_'";
}
- or download this
c:\test>junk3
Sat Aug 4 02:33:24 2007 Got: 'Sat Aug 4 02:33:24 2007'
...
junk2.pl still running
junk2.pl still running
...
- or download this
#! perl -slw
use strict;
...
sleep 1;
warn "$0 still running\n";
}
- or download this
c:\test>junk3
junk2.pl still running
...
junk2.pl still running
junk2.pl still running
...