> 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 \".\"" you can't start in this way by -e '......' Rgds, Connie -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]