What about Perl?
Expect FAQ (Frequently Asked Questions)From: libes (Don Libes) To: Joe McGuckin <joe@ns.via.net> Subject: Re: Need Perl examples Date: Sun, 22 Jan 95 20:17:39 EST Joe McGuckin writes: > >Yeah, I've scanned through your book a couple of times in the last >week, trying to make up my mind if I should buy it. I spent three years writing it - so I'm glad to hear you're spending a little time considering its merit! >Pro: > Looks like implementing some sort of telnet daemon would be trivial.
Related QuestionsForum FAQ - GameDev.Net Discussion ForumsPerl is a robust general-purpose programming language frequently used for creating CGI programs on web servers because it is faster than UNIX shell script programs, it can read and write binary files, and it can process very large files. Many companies now use databases to store their web content. The growing trend in MMO games has also increased the need for a reliable database solution for the game industry.Related Questions
comp.lang.perl.tk FAQPerl/Tk (also known as pTk or ptk) is a collection of modules and code that attempts to wed the easily configured Tk 8 widget toolkit to the powerful lexigraphic, dynamic memory, I/O, and object-oriented capabilities of Perl 5. In other words, it is an interpreted scripting language for making widgets and programs with Graphical User Interfaces (GUI). (Examples of widget programs [not necessarily written in Perl/Tk] include xterm, xclock, most web-browsers, etc.Related Questions
Soupermail Frequently Asked QuestionsPerl is a pretty damn funky programming language that is very popular on the internet because of its power and ease of use. However, if you didn't know this, I'd suggest you not attempt to install Soupermail yourself. If you go installing things on a webserver you don't know anything about, you deserve all the punishment your sysadms can dole out to you.Related Questions
Zaner Network Solutions and WebDesign and hostingShort for Practical Extraction and Report Language, Perl is a programming language developed by Larry Wall, especially designed for processing text. Because of its strong text processing abilities, Perl has become one of the most popular languages for writing CGI scripts. Perl is an interpretive language, which makes it easy to build and test simple programs.Related Questions
Web Hosting Singapore - Frequently Asked QuestionPerl stands for Practical Extraction and Report Language. It is the most widely used language for CGI.Related Questions
Opticom Solutions, Website Design, Database Design and Hosti...Practical Extraction and Report Language (perl) is an interpretive programming language designed to process text. It is typically the language used for CGI scripts. Perl modules and add-ons are available to do almost anything making, Perl a truly versatile programming language.Related Questions
Showtimes FAQ - Movie showtimes for the Palm Connected Organ...Windows users no longer need to download perl, because Showtimes for Windows comes with a compiled version of the getdata.pl in the form of getdata.exe. Perl is great for string manipulation, and is perfectly suited for this task: parsing an HTML file. Also, it is available for a myriad of platforms, and so allows Showtimes to reach a larger audience of people.Related Questions
Frequently Asked Questions: WestLake TrainingPerl is the most popular programming language for writing CGI scripts. Due to its popularity, power, and flexibility, as well as the fact that scripts written in Perl can run easily on most Web servers, Perl is the language that we teach for CGI scripting.Related Questions
Business Class Budget Web Hosting on Windows, .NET, & ASP - ...Practical Extraction and Reporting Language, is a programming language often used for creating CGI programs. Most Perl scripts that are made are free and easy to use. They can help manage different aspects of a site.Related Questions
Fastweb Romania - gazduire web, design web, servere dedicate...Practical Extraction and Report Language (Perl) is a programming language used to process text, being one of the most popular programming languages for CGI.Related Questions
Web Site Design Service: Web Hosting frequently asked questi...Perl is a script language of choice for many web developers. Libraries for Perl exist for several platforms and Perl's speed and flexibility make it well suited for form processing and on-the-fly web page creation. For more information, enter to http://www.perl.org.Related Questions
FREE SPAM filters with Web Hosting : Host1 - The Professiona...Perl is a high-level programming language with an eclectic heritage written by Larry Wall and a cast of thousands. It derives from the ubiquitous C programming language and to a lesser extent from sed, awk, the Unix shell, and at least a dozen other tools and languages.Related Questions
CGI ConnectionPerl is a programming language that was developed by Larry Wall and is relatively easy to learn. It is an interpreted language which means that the source code must be read by the Perl runtime each time it is executed. So, any machine with the Perl interpreter can run Perl scripts! Because of this, Perl became one of the most popular languages chosen to develop software for the Internet.Related Questions
IndoScot :: Help / FaqWebsites can perform quite complex functions. These functions can be programmed in a number of programming languages including PERL.Related Questions
CGI Extremes - Tutorials - General CGI QuestionsThe first line of any CGI scripts is pointed to the location of Perl on your web server. The location for Perl on most servers is /usr/sbin/perl , but this can vary from server to server. If you have telnet access to your web server, you can type in which perl at the command prompt and the location of Perl will be revealed to you. If you do not have telnet access, you will need to review the FAQs for your web server or contact your hosting company.Related Questions
ActivePerl faq1 - Availability and InstallationPerl is a scripting language widely used for system administration and programming on the World Wide Web. It originated in the UNIX community and has a strong UNIX slant, but usage on Windows is growing rapidly. ActivePerl is a port of core Perl to Windows.Related Questions
PERL (Practical Extraction and Report Language) is a programming language known for its text processing ability, and is often used to generate CGI (Common Gateway Interface) scripts. PERL is easy to use for the creation and testing of simple programs.Related Questions
comp.lang.perl.tk FAQPerl/Tk (also known as pTk or ptk) is a collection of modules and code that attempts to wed the easily configured Tk 4 widget toolkit to the powerful lexigraphic, dynamic memory, I/O, and object-oriented capabilities of Perl 5. In other words, it is an interpreted scripting language for making widgets and programs with Graphical User Interfaces (GUI). (Examples of widget programs [not necessarily written in perl/Tk] include xterm, xclock, most web-browsers, etc.Related Questions
How do I call perl from C?
comp.lang.perl.tk FAQYou need to see a recent copy of the perlembed(1) pod page. By "recent" it needs to be up to date with at least perl5.002. Use C from Perl? Read (at least) the perlcall(1), the perlapi(1), the perlxs(1), the perlxstut(1), and the perlguts(1) manpages. Use C++ from Perl? Recent changes to MakeMaker will make this easier. Be sure you are familiar with the perlcall(1), the perlapi(1), the perlxs(1), the perlxstut(1), and the perlguts(1) manpages.
Related QuestionsHow do I write scripts in Perl/Tk?
comp.lang.perl.tk FAQStart your script as you would any perl script (e.g. #!/usr/bin/perl, #!/usr/local/bin/perl, #!/opt/bin/perl, [built static? then #!/usr/bin/tkperl], whatever, see the perlrun(1) man page for more information).
Related QuestionsHow do I call Tcl code from Perl/Tk?
comp.lang.perl.tk FAQAssuming that you have a pressing need to call Tcl from Perl/Tk then one "official way" to so would be via the ->send() and the ->Receive() methods. It is also worth noting that you can still have access to a complete Tcl script from perl via the perl system, or '' (backtick), or even exec mechanisms. Just be careful with I/O waits and return values if you try one of these approaches. Further suggestions may be found in the various perlipc files at: ftp://ftp.perl.
Related QuestionsIs there something equivalent to wish in Perl/Tk?
comp.lang.perl.tk FAQThe idea of wish is that you read from <STDIN> and evaluate each statement. The standard way to do this in Perl/Tk is to use the tkpsh script that comes in your Perl/Tk build directory. Another elegant way to get wish like behavior in Perl/Tk is to use rmt which you can find in perl5/Tk/demos in your Perl/Tk distribution. When you run rmt you already have Tk.pm set up for you so you can start typing things like $mmm = new MainWindow; etc. at the rmt: prompt.
Related QuestionsIs there a debugger specifically for Perl/Tk?
comp.lang.perl.tk FAQNot for the latest version - but the -w switch and use strict; are always helpful with debugging as they provide informative error messages. You can, of course, run under the standard perl debugger using the -d switch like so: perl -d myscript But it is recommended that you set you breakpoints carefully since just the calls to ManWindow->new require many steps. Older information): Gurusamy Sarathy <gsar@engin.umich.
Related QuestionsIs there a GUI builder in Perl/Tk?
comp.lang.perl.tk FAQWork has reputedly (January 1996) started on porting a Tcl/Tk GUI builder known as SpecTcl for use with Perl/Tk. For the Tcl/Tk SpecTcl kit see: ftp://ftp.sunlabs.com/pub/tcl/SpecTcl-*.tar.[gz|Z] and address questions about SpecTcl to <spectcl@tcl.eng.sun.com>. In <news:ANDREAS.96Mar24234521@marvin.berlin.de> Andreas Koschinsky <marvin@logware.
Related QuestionsHow do I compile Perl/Tk scripts?
comp.lang.perl.tk FAQbrings a new and exciting answer to this question: PAR, a "Cross-Platform Packaging and Deployment tool", originally developed by Autrijus Tang. Before PAR, the only public support for Perl/Tk "compilation" was in the Dr.
Related QuestionsWhat is the connection between PDL and Perl ?
PDL::FAQ - Frequently asked questions about PDLPDL is a Perl5 extension package. As such it needs an existing Perl5 installation (see below) to run. Furthermore, much of PDL is written in perl (+ some core functionality that is written in C). PDL programs are (syntactically) just perl scripts that happen to use some of the functionality implemented by the package '' PDL '' ;
Related QuestionsWhere can I get the Perl MD5 module from?
WebminThe Webmin Users and Groups module supports the encryption of passwords with the MD5 algorithm, if your system supports it. However, this depends on the Perl MD5 module, which can be downloaded from http://www.cpan.org/modules/by-module/MD5/MD5-1.7.tar.gz. Once downloaded, enter the following commands to install the module : gunzip MD5-1.7.tar.gz If you are using Webmin 0.83 or above, an even easier option is to use the Perl Modules module to make and install the MD5 module from CPAN.
Related QuestionsHow do I install Perl on systems that do not have it as standard?
WebminYou need to download and compile the latest Perl source from http://www.cpan.org/src/stable.tar.gz. Or if you have Solaris or HPUX you can download pre-built packages that avoid the need to compile Perl yourself.
Related Questions