S
Sherm Pendley
Alont said:maybe all people here are working on linux?
No, I use a Mac.
hehe, I use EditPlus to write perl and then save as a *.pl file,
then I open the *.pl file in Folder Window, WINDOWS automatically
start perl.exe to execute it, but when the end of the execution,
perl.exe automatically close
That's what happens by default if you run the .pl file by
double-clicking on it. What you want to do instead is open up a command
shell - or "DOS box", or "Command Prompt" or whatever Windows is calling
that these days - and run your app with the command "perl foo.pl". That
way the window won't close when your script is done.
sherm--