Using perl send an html email

rajeshkumar created the topic: using perl send an html email Using perl send an html email #!/usr/bin/perl -w use strict; use MIME::Lite; # SendTo email id my…

Read More

Send an HTML email using perl and sendmail

rajeshkumar created the topic: Send an HTML email using perl and sendmail Send an HTML email using perl and sendmail open(MAIL,”|/usr/sbin/sendmail -t”); ## Mail Header print MAIL…

Read More

Perl script to monitor disk space and send an email

rajeshkumar created the topic: Perl script to monitor disk space and send an email Perl script to monitor disk space and send an email Very good link…

Read More

Perl function to remove any element using value validation

rajeshkumar created the topic: perl function to remove any element using value validation perl function to remove any element using value validation Not Working – my @items…

Read More

Delete line from string using perl

rajeshkumar created the topic: Delete line from string using perl Questions: Delete line from string using perl Delete entry from array based on custom duplicate value. How…

Read More

Remove the duplicate data from array using perl

rajeshkumar created the topic: Remove the duplicate data from array using perl Remove the duplicate data from array using perl Method 1 ============================================ sub uniqueentr { return…

Read More

Foreach Vs for Vs while in perl

rajeshkumar created the topic: foreach Vs for Vs while in perl Definition 1: In the while loop, Perl reads a line of input, puts it into a…

Read More

Good Books on Perl

rajeshkumar created the topic: Good Books on Perl 1. Effective Perl Programming: Ways to Write Better, More Idiomatic Perl (2nd Edition) (Effective Software Development Series) Regards, Rajesh…

Read More

Setting Up Perl and CGI For Wamp Server WAMP(P)

rajeshkumar created the topic: Setting Up Perl and CGI For Wamp Server WAMP(P) chromicdesign.com/2009/05/setting-up-perl-for-wampp.html Test.pl/test.cgi #!C:\Perl64\bin\perl.exe # test.cgi by Bill Weinman [http://bw.org/] # Copyright 1995-2009 The BearHeart…

Read More

Perl Interview Questions and Answers

rajeshkumar created the topic: Perl Interview Questions and Answers What line of code is a valid hash literal? [first => ‘John’, last => ‘Smith’] {first => ‘John’,…

Read More

Perl commandline search and replace

rajeshkumar created the topic: Perl commandline search and replace Perl commandline search and replace The better option is using perl command line search and replace option. The…

Read More

Any Possible Software/Plugin FoR SCM Workflow

pankaj2252369@gmail.com created the topic: Any possible Software/plugin for SCM workflow? Hey Team, Thanks for lot of information on the site. wonderful work. Any idea on SCM workflow…

Read More

Commonly Used Sign- Punctuation and their Name in Perl

Commonly Used Sign- Punctuation and their Name in Perl ( => ) Comma Arrow  ( ‘ ’, “ ”, ‘ ‘, ” “ ) à Quotation marks ( $ ) àDollar…

Read More

Perl Training | Perl Course | Perl Quality Trainer | India

scmGalaxy is a community initiatives based on Software configuration management that helps community members to optimize their software development process, Software Development Life Cycle optimization, Agile Methodologies…

Read More

Most asked Perl Interview Questions and Answers

What is Perl one-liner?

There are two ways a Perl script can be run:

a)from a command line, called one-liner, that means you type and execute immediately on the command line. You’ll need the -e option to start like “perl -e “print “Hello”;”. One-liner doesn’t mean one Perl statement. One-liner may contain many statements in one line.

b)from a script file, called Perl program.

Read More

How to Execute external commands by using perl?

There are many ways to execute external commands from Perl. The most commons are: system function exec function backticks (“) operator open function All of these methods…

Read More

Difference between use and require in Perl – use Vs require in perl

|| use Vs require in perl || What is the difference between use and require? Except of course that use is evaluated at compile time where as…

Read More

How to Check File Attributes in Perl ? Perl File Attributes explained

Checking File Attributes in Perl I have been using perl for quite some time now. I have also been using the file handling logic in my scripts. However,…

Read More

Perl Scripting Interview Questions and Answers

Can anyone help on these questions which i couldnt answer in my interview,because iam not sure on perl scripting iam learning the things in perl now. 1.What…

Read More

Introduction of Perl – Complete Overview

What is Perl Perl is a programming language, It’s Object Oriented, simple to learn and very powerful. Perl stand for: “Practical Extraction and Reporting Language”. Perl is…

Read More