Thanks Connie and Bob for answer too fast!!! i'm very
stupid i try all things except that well thanks so
much!!!
I read perldoc perlcc but its for unix, i think works
for win but i need the libs... i'm still searching
Gonzalo
Ahora podés usar Yahoo! Messenger desde tu celular. Aprendé c
> -Original Message-
> From: Omar Shariff [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 24, 2002 9:03 AM
> To: [EMAIL PROTECTED]
> Subject: Two Questions
>
>
> Hi, i've two questions (problems...)
> 1.- I've perl for windows (active perl) when i try to
> do a line command it's doesn
> 1.- I've perl for windows (active perl) when i try to
> do a line command it's doesn't work! i do something
> like this:
> D:\>perl -e 'for(1..300)sleep 1;print STDERR ".";'
It could be :
perl -e "sleep 1 for (1..300) ; print STDERR '.'"
or
perl -e "for (1..300){sleep 1 } print STDERR \".\""