Re: ping.epl

2001-04-09 Thread Kee Hinckley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > >open(PING,"ping -c 20 10.1.1.1 |"); No guarantee of what the PATH variable is for the web server, I would spell out the full path to ping. - -- Kee Hinckley - Somewhere.Com, LLC http://consulting.somewhere.com/consultants.html#kee I'm not

Re: ping.epl

2001-04-09 Thread Neeme Vool
> Hi .. > > I try to do an .epl like this > > > [- > my counter =0; > > open(PING,"ping -c 20 10.1.1.1 |"); > while ($_ = ) > { > [+$ counter +] > counter = counter + 1; > } > > -] > > > i want to show the ping output in the HTML

ping.epl

2001-04-09 Thread Flavio Andres Volterri
Hi .. I try to do an .epl like this [- my counter =0; open(PING,"ping -c 20 10.1.1.1 |"); while ($_ = ) { [+$ counter +] counter = counter + 1; } -] i want to show the ping output in the HTML but no work :( what i