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 “To: rajeshk\@xxx.com\n”; print…

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 i found out….

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 = (rajesh1, rajesh2,rajesh3,rajes4,rajesh5,rajesh7)…

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 to delete lines…

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 keys %{{ map…

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 variable, and runs…

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 Kumar Twitt me…

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 Group, LLC #…

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’, last => ‘Smith’}…

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 syntax is 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 software/framework ? which…

Read more »
perl-sign-punctuation-marks

Commonly Used Sign- Punctuation and their Name in Perl

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

Read more »
perl-training

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 and improve productivity…

Read more »
perl-interview-questions-answers

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 »
execute-external-commands-from-perl

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 have different behaviour,…

Read more »
perl-use-require-difference

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 require is evaluated…

Read more »
perl-file-attributes

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, what I did…

Read more »
perl-scripting-interview-selected-questions

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 standard Perl modules…

Read more »
perl-introduction

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 an Interpreted language,…

Read more »
a-script-to-find-all-users-who-have-not-set-passwords

A script to find all users who have not set passwords

Write a script to find all users who have not set passwords. #!/usr/bin/ruby require “P4” p4 = P4.new p4.parse_forms p4.connect p4.run_users.each do |u| user = p4.fetch_user( u[ “User” ] )…

Read more »