Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals
User's Guide
» DzSoft Perl Editor
Getting Started
» Built-in Hints
» Code Explorer
» Collapsible Subroutines
» Breakpoints
» Script Input Data Editor
» Run in Command Prompt
» Insert Print Function Dialog
» Perl Interpreter
» Syntax Check
Options
» Options Dialog
» Editor Options
» Default Keymapping
» Classic Keymapping
» Brief Keymapping
» Epsilon Keymapping
» Visual Studio Keymapping
Support Information
» Frequently Asked Questions
» Tips & Tricks
» Registration & Support
 

Run in Command Prompt

Most of all Perl scripts can be divided into two categories: CGI scripts and command prompt ones.

CGI scripts are intended to be run on a web server (for more information please see the Perl Programming Links). To run/debug a CGI script in DzSoft Perl Editor, please use the Run... or Quick Run menu items or appropriate toolbar buttons, or the Run tab. The following is an example of a CGI script:

#!/usr/bin/perl

print "Content-type: text/html\n\n";

formatted usb drive recovery unerase usb file restore usb drive files
free keyloggers password recovery mmc card data recovery
deleted photos recovery best data recovery software group sms

print "<html><h1>Hello!</h1></html>\n";

Command prompt scripts are the other kind of Perl scripts. On Windows they must be run in a command prompt window. To run/debug them in DzSoft Perl Editor, please use the Run in Command Prompt menu item or toolbar button. Here is an example of a command prompt script:

#!/usr/bin/perl

print "Please enter you name: ";

$name = <STDIN>;

chomp($name);

print "Hello, $name!\n";

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals