Jorge Goncalvez Tue, 10 Jul 2001 01:48:02 -0700
Hi, I have this code written in Perl to restart inetd but nothing happens. sub restart_serv { $PROG = "c:/cygwin/usr/sbin/inetd.exe"; $SIG{HUP} = \&phenix; sub phenix { exec($PROG) or die " can't restart : $!\n"; } } thanks.