SlideShare una empresa de Scribd logo
1 de 13
Vibrant Technologies
& Computers
Perl scripting COURSE
Make Career With Us!!
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
What is Perl?
• Perl is a general-purpose programming language,
and can be used for practically any programming
task any other high-level language can be used
for. However, Perl is usually thought of as a “glue”
language, so called because it binds things
together (such as tying databases to Web pages,
converting files from one format to another, and
so on).
• Perl is very flexible and is currently available on
over two dozen operating system platforms
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Perl
• The name Perl comes from “Practical
Extraction and Report Language”. Perl has
many features borrowed from other
programming languages.
• The Perl system uses an interpreter, called
“perl”. Usually Perl and perl are considered
to be the same thing for practical purposes.
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Versions of Perl
• The current versions of Perl are all in the 5.X and
6.X series (6.X was released in 2001). If you have
an older version of Perl (such as Perl 4.X), you
should upgrade it as many changes were made
between releases.
• Perl 4.X was a very buggy release of Perl and
should not be used. Also, many Perl programs
designed for 5.X will not work with 4.X.
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Maybe Perl is already installed
• Many operating systems (Linux and UNIX notably,
but also Windows NT Resource Kit) come with
Perl installed. You can easily check whether Perl
is loaded on your system by opening a console or
terminal window and issuing the command:
perl –v
If you get a version number, Perl is installed. If
you get an error message about command not
found (or something similar), Perl is not installed.
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Where to get Perl
• Perl is available free of charge from many public
sites.There are several releases of Perl available for
different operating systems, so make sure you get a
current release.
• For Linux or UNIX systems, visit perl.com for the latest
releases
• For Windows systems, you can compile the Perl
source code yourself (a hassle) or download a
preconfigured Windows release at activestate.com
• For Macintosh, visit macperl.com for MacPerl
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Perl documentation
• Every release of Perl comes with documentation in a
set of files. Most releases have over 1,700 pages of
documentation included in reference books, user
guides, FAQs, and so on.
• On most operating systems, a utility called perldoc is
installed as part of the Perl system. The perldoc utility
can search for and format Perl documentation for
you. To use perldoc to look up the basic syntax for
perl, open a terminal or console and issue the
command:
perldoc perl
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
What you need
• When you have installed Perl on your system, all you
need to use the language is a text editor that can save
ASCII files. All Perl scripts are written and saved in
ASCII characters.
• On some operating systems that do not have a Perl
GUI front end, you will need to use a console or
terminal window to interact with Perl. Some GUI-
based Perl front ends are available for Linux, UNIX,
Macintosh and Windows.
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Comments in Perl
• All comments in Perl are written starting with a #
sign. Anything after the # sign through to the end
of the line is ignored by the interpreter.
• Comments can be placed anywhere on the
line, but commands cannot follow a comment on
the same line
• Multiline comments should have a # symbol as
the first character on every line
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
The #! directive
• The sole exception to # indicating a comment is
on the first line of a Perl program (or “script”). All
Perl programs can begin with the line:
#!/usr/bin/perl
• The #! is a hold-over from UNIX that instructs the
operating system to use the /usr/bin/perl
program to run whatever is in this file
• The path may be different for your system, and
many environments such as Windows do not
need this line. However, it will not cause errors.
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
Whitespace
• Whitespace is ignored by the Perl intepreter.
You can use whitespace (spaces and tabs)
anywhere in your programs to make them
more readable.
• You should use whitespace to help format
your scripts to show loops, logic layout, and
continuation of statements, as you will see
later in this course
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
enquiry@vibrantgroup.co.in
http://perlscriptingcoursetraining.vibranttechnologies.co.in/
The print command
• The print function tells Perl to display whatever
follows, such as a string, variable name, and so
on. You’ll see how to build complex print
statements later.
• The print statement allows the C or Java escape
characters to be used for line
feeds, backspace, tabs, and so on. For
example, the command:
print “Hellon”;
will print “Hello” followed by a newline.
B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
advancedaixadministration.vibranttechnologies.co.in
enquiry@vibrantgroup.co.in
androidtraining.vibranttechnologies.co.in
Where to Get More Information
Vibrant Group:
www.vibrantgroup.co.in
Vibrant Technologies & Computers
www.vibranttechnologies.co.in/technologies.vibrantgroup.co.
in
Vibrant HR Team
www.hr.vibrangroup.co.in

Más contenido relacionado

Último

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
MateoGardella
 

Último (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 

Destacado

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Destacado (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Perl training-course-navi-mumbai-perl-course-provider-navi-mumbai

  • 1. Vibrant Technologies & Computers Perl scripting COURSE Make Career With Us!! B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173
  • 2. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ What is Perl? • Perl is a general-purpose programming language, and can be used for practically any programming task any other high-level language can be used for. However, Perl is usually thought of as a “glue” language, so called because it binds things together (such as tying databases to Web pages, converting files from one format to another, and so on). • Perl is very flexible and is currently available on over two dozen operating system platforms
  • 3. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Perl • The name Perl comes from “Practical Extraction and Report Language”. Perl has many features borrowed from other programming languages. • The Perl system uses an interpreter, called “perl”. Usually Perl and perl are considered to be the same thing for practical purposes.
  • 4. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Versions of Perl • The current versions of Perl are all in the 5.X and 6.X series (6.X was released in 2001). If you have an older version of Perl (such as Perl 4.X), you should upgrade it as many changes were made between releases. • Perl 4.X was a very buggy release of Perl and should not be used. Also, many Perl programs designed for 5.X will not work with 4.X.
  • 5. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Maybe Perl is already installed • Many operating systems (Linux and UNIX notably, but also Windows NT Resource Kit) come with Perl installed. You can easily check whether Perl is loaded on your system by opening a console or terminal window and issuing the command: perl –v If you get a version number, Perl is installed. If you get an error message about command not found (or something similar), Perl is not installed.
  • 6. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Where to get Perl • Perl is available free of charge from many public sites.There are several releases of Perl available for different operating systems, so make sure you get a current release. • For Linux or UNIX systems, visit perl.com for the latest releases • For Windows systems, you can compile the Perl source code yourself (a hassle) or download a preconfigured Windows release at activestate.com • For Macintosh, visit macperl.com for MacPerl
  • 7. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Perl documentation • Every release of Perl comes with documentation in a set of files. Most releases have over 1,700 pages of documentation included in reference books, user guides, FAQs, and so on. • On most operating systems, a utility called perldoc is installed as part of the Perl system. The perldoc utility can search for and format Perl documentation for you. To use perldoc to look up the basic syntax for perl, open a terminal or console and issue the command: perldoc perl
  • 8. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ What you need • When you have installed Perl on your system, all you need to use the language is a text editor that can save ASCII files. All Perl scripts are written and saved in ASCII characters. • On some operating systems that do not have a Perl GUI front end, you will need to use a console or terminal window to interact with Perl. Some GUI- based Perl front ends are available for Linux, UNIX, Macintosh and Windows.
  • 9. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Comments in Perl • All comments in Perl are written starting with a # sign. Anything after the # sign through to the end of the line is ignored by the interpreter. • Comments can be placed anywhere on the line, but commands cannot follow a comment on the same line • Multiline comments should have a # symbol as the first character on every line
  • 10. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ The #! directive • The sole exception to # indicating a comment is on the first line of a Perl program (or “script”). All Perl programs can begin with the line: #!/usr/bin/perl • The #! is a hold-over from UNIX that instructs the operating system to use the /usr/bin/perl program to run whatever is in this file • The path may be different for your system, and many environments such as Windows do not need this line. However, it will not cause errors.
  • 11. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ Whitespace • Whitespace is ignored by the Perl intepreter. You can use whitespace (spaces and tabs) anywhere in your programs to make them more readable. • You should use whitespace to help format your scripts to show loops, logic layout, and continuation of statements, as you will see later in this course
  • 12. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 http://perlscriptingcoursetraining.vibranttechnologies.co.in/ enquiry@vibrantgroup.co.in http://perlscriptingcoursetraining.vibranttechnologies.co.in/ The print command • The print function tells Perl to display whatever follows, such as a string, variable name, and so on. You’ll see how to build complex print statements later. • The print statement allows the C or Java escape characters to be used for line feeds, backspace, tabs, and so on. For example, the command: print “Hellon”; will print “Hello” followed by a newline.
  • 13. B2/6/2 Vashi ,Navi Mumbai, Contact:09892900103/9892900173 advancedaixadministration.vibranttechnologies.co.in enquiry@vibrantgroup.co.in androidtraining.vibranttechnologies.co.in Where to Get More Information Vibrant Group: www.vibrantgroup.co.in Vibrant Technologies & Computers www.vibranttechnologies.co.in/technologies.vibrantgroup.co. in Vibrant HR Team www.hr.vibrangroup.co.in