21 messages in org.perl.beginners-cgiRE: Two Questions
FromSent OnAttachments
Timo...@hmco.comJul 22, 2002 10:05 am 
Scot RobnettJul 22, 2002 10:18 am 
Hughes, AndrewJul 22, 2002 10:22 am 
David T-GJul 22, 2002 11:07 am 
Bob ShowalterJul 22, 2002 11:12 am 
David T-GJul 22, 2002 11:21 am 
Scot RobnettJul 22, 2002 11:47 am 
tomm...@another.comJul 23, 2002 2:35 am 
tom...@sonofagun.co.ukJul 23, 2002 2:35 am 
Scot RobnettJul 23, 2002 8:25 am 
Bob ShowalterJul 23, 2002 8:33 am 
Timo...@hmco.comJul 23, 2002 8:54 am 
Timo...@hmco.comJul 23, 2002 9:19 am 
Naika - EV1Jul 23, 2002 2:24 pm 
Omar ShariffJul 24, 2002 6:02 am 
Connie ChanJul 24, 2002 9:27 am 
Bob ShowalterJul 24, 2002 9:27 am 
Omar ShariffJul 24, 2002 9:49 am 
Hytham ShehabJul 26, 2002 4:26 am 
Octavian RasnitaJul 26, 2002 7:26 pm 
Hytham ShehabJul 27, 2002 4:19 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:RE: Two QuestionsActions...
From:Bob Showalter (Bob_@taylorwhite.com)
Date:Jul 24, 2002 9:27:55 am
List:org.perl.beginners-cgi

-----Original Message----- From: Omar Shariff [mailto:jcsi@yahoo.com.ar] Sent: Wednesday, July 24, 2002 9:03 AM To: begi@perl.org 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't work! i do something like this: D:\>perl -e 'for(1..300)sleep 1;print STDERR ".";'

and i receive this answer!!!: Can't find string terminator "'" anywhere before EOF at -e line 1. i receive this always... (HELP!!!)

Welcome to Windoze! Their shell recognizes double quotes only.

You're also missing some braces. Try it like this:

D:\>perl -e "for(1..300){sleep 1;print STDERR '.'}"

2.- how can i make a exe file?? i put perlcc but when compiles give me a lot of errors, not found *.lib (kernel32.lib, etc)

I dunno.