PERL Training In OMR – Sholinganallur – Chennai

Perl training in chennai strongly determined to provide Realtime and Practical Trainings on Perl Scripting. We have been providing Perl Scripting Language Training for Automating Test Scripts for more than FIVE years. All our sessions are completely practical and interactive paired with Realtime Methodologies, Project Scenarios and Interview Guidance exclusively on Unix and PERL

ABOUT PERL COURSE

Perl is a scripting language which allows for rapid prototyping of projects formerly done with a programming language or a shell. It incorporates all the functionality of C (including a UNIX system interface), the Shells, grep, sed, and awk. The topics in the course will aid all computer users – from end user to programmer to administrator alike.

PERL TRAINING COURSE CONTENTS

PERL course content is exclusively designed with Basics through Advanced Concepts.
This course teaches both the programming interface and the techniques that can be used to write procedures in PERL (Practical Extraction and Report Language). PERL is now available for all system platforms, but is usually not provided by the system’s manufacturer. Each student will be able to use PERL techniques and commands to write scripts to perform various user and administrative tasks.

This course teaches advanced concepts and capabilities that can be used to write procedures in PERL (V5), especially the new interfaces that use object-oriented features. Each student will be able to use PERL techniques and commands to write scripts to perform various user and administrative tasks, implementing advanced features of the language.

Version

SUN Solaris (V7-V10), IBM AIX V4.3, 5L (V5.1 and V5.2), HP-UX (V11 and V11i), and SGI IRIX V6.5, Linux (Red Hat * SuSe)

Exercises

There are several hands-on machine exercises. All five Unix platforms will be available for lab exercises.

Programming in PERL: Basic/Intermediate

  • Overview of PERL and its purpose
  • History of PERL
  • Control capabilities: files, processes, network
  • Obtain, build, and install PERL
  • Obtaining modules from CPAN
  • Writing PERL Scripts
  • Layout of a PERL procedure
  • Execution methods
  • Types of variables: scalars, lists (arrays), associative arrays (hashes), PERL built-ins, globals
  • Operators: precedence, arithmetic, increment/decrement, pattern matching, relational, conditional, assignment
  • PERL Programming Constructs: Looping statements and Decision statements
  • Regular expressions review
  • Expressions common to PERL/Unix
  • Expressions unique to PERL
  • PERL File I/O
  • Interfacing PERL with the Operating System
  • Subroutines in PERL procedures
  • Using as functions
  • Passing arguments (scalars and arrays)
  • Introduction to references
  • Using PERL Extension Functions: procedure location, extension types, require statement, use statement

Programming in PERL: Advanced Topics

  • Using PERL References
  • Purpose of references
  • Querying a reference
  • Symbolic references
  • References to functions: named functions, anonymous functions, callbacks
  • Multi-dimensional arrays
  • Complex data structures
  • Using PERL Typeglobs
  • PERL variables, symbol tables, and scope
  • Typeglobs compared with references
  • PERL Modules and Packages
  • Basic packages
  • Packages and component files
  • Initialization and destruction
  • Accessing the symbol table
  • Preparing a package for distribution with h2xs
  • Object Oriented PERL Programming
  • Objects in PERL
  • Inheritance
  • Argument passing
  • Methods of Persistance
  • FreezeThaw.pm / Storable.pm / MLDBM.pm
  • DBI (Database Interface)
  • PERL Scripts for
  • Networking with Sockets
  • Server-side functions and setup
  • Client-side functions and setup
  • Installing PERL modules from the CPAN
  • Adding documentation to a module/program

Automation Minds – BEST UNIX TRAINING INSTITUTE IN CHENNAI, ADYAR

Get Trained by real professionals having 20+ years industry experience in India, Singapore, UK, Australia, Malaysia & USA

We are the Leading UNIX / PERL real time training institute in Chennai. We offer best UNIX training with real-time study material. We can guarantee classes that makes you as a professional UNIX professional.

We provide real time project for better understanding.

UNIX COURSE CONTENT

INTRODUCTION TO THE UNIX OPERATING SYSTEM

  • A brief history of Unix
  • The Unix kernel
  • The UNIX file system
  • Getting started navigating the file system
  • The file system structure
  • Directories and files
  • Pathnames
  • Navigating the file system
  • Exercise: Logging on to the system
  • Exercise: Navigating the file system

BASIC COMMANDS

  • Command line syntax
  • Basic file handling commands
  • Directory handling commands
  • Filename wildcard characters
  • Exercise: Manipulating files and directories

INTRODUCTION TO THE VI EDITOR

  • Overview of the vi editor
  • Basic functions
  • Switching to input mode
  • Other useful commands
  • Exercises: Using the vi editor
  • Exercise: Using more advanced vi features

REDIRECTION AND PIPES

  • Input redirection
  • Output redirection
  • Pipes
  • Exercise: Using redirection and pipe facilities

SEARCHING AND REPLACING TEXT

  • Replacing text
  • Using the vi editor
  • Using sed for search and replace
  • Searching for text with grep
  • Linking files
  • Exercises: Searching and Replacing Text

RECALLING AND EDITING COMMANDS

  • Overview
  • The bash shell
  • The korn shell
  • Exercises: Recall and Edit Commands

FILE PERMISSIONS AND ACCESS CONTROL

  • Users and user groups
  • File access permissions
  • Changing file attributes
  • Switching users and user groups
  • Linking files
  • Exercise: Setting and access permissions

PROCESSES

  • What is a process?
  • Monitoring processes
  • Killing processes
  • Background processes
  • Job Control
  • Grouping commands
  • Exercise: Monitoring and controlling processes

MORE BASIC COMMANDS

  • The wc (word count) command
  • The find command
  • The cut command
  • The sort command
  • The finger command
  • Exercise: Using file handling commands

THE USER ENVIRONMENT

  • Customising the .profile or .bash_profile
  • Customising the .kshrc or .bashrc
  • Exercise: Setting up an environment

UNIX SHELL SCRIPTING COURSE CONTENT

UNIX COMMAND REVIEW

  • Basic Unix commands
  • General commands
  • File and directory handling commands
  • Filename generation characters
  • I/O Redirection features
  • Other commands

GETTING STARTED

  • What is a shell script?
  • Development guidelines
  • Creating and editing shell scripts
  • Naming and storing shell scripts
  • Executing shell scripts
  • Exercise: Write a simple shell script

USING VARIABLES

  • Environment variables
  • Local variables
  • Assigning values to variables
  • Assessing variable values
  • Using quotes
  • Delimiting variable names
  • Echo control sequences
  • Exercise: Add variables to a script

INTEGER ARITHMETIC

  • Using the expr command
  • Using the (( )) notation
  • Exercise: Add integer arithmetic to a shell script

CONDITION EXECUTION

  • The if statement
  • The test command
  • Other test notations
  • Default and substitute variables
  • Exit status codes
  • Exercise: Adding validation to previous scripts

HANDLING RUN TIME DATA

  • The read command
  • Command line arguments
  • Exercise: Writing a generic shell script
  • Exercise: Writing an interactive shell script

LOOP CONSTRUCTS

  • The while loop
  • The until loop
  • The for loop
  • The while true and until false loops
  • Loop control commands
  • Exercise: Enhancing the previously written scripts
  • Exercise: Writing a guess-the-number game

MULTI-BRANCH DECISIONS

  • The case statement
  • Menu driven applications
  • Exercise: Developing and writing a menu system

FUNCTIONS

  • What is a function?
  • Syntax
  • Examples
  • Exercise: Add a function to a script

INTERRUPT HANDLING

  • Interrupt signals
  • Trapping interrupts
  • Exercise: Adding traps to the menu script

ADDITIONAL FEATURES AND FACILITIES

  • The exec commands
  • The includes notation
  • More about loops
  • Arrays
  • Here Documents
  • Exercise: Create a here script

UNIX ADVANCED SHELL PROGRAMMING COURSE CONTENT

REDIRECTION, PIPES AND FILTERS

  • Standard I/O and redirection
  • Pipes
  • Command separation
  • Conditional execution
  • Grouping Commands
  • UNIX filters
  • The tee command

BACKUP AND RESTORE UTILITIES

  • Archive devices
  • The cpio command
  • The tar command
  • The dd command

BACKGROUND JOB SCHEDULING

  • Starting background jobs
  • Background tasks and the nohup command
  • Process priorities and the nice command
  • Job control
  • Scheduling jobs with the at command
  • Scheduling jobs with the cron command

REGULAR EXPRESSION NOTATION

  • Regular expressions
  • Extended regular expressions

THE STREAM EDITOR – SED

  • Introduction and command line syntax
  • The sed program structure
  • sed program processing
  • Use sed commands
  • sed addresses
  • sed instructions
  • Hold and get functions
  • Advanced flow control

SEARCHING FILES FOR PATTERNS

  • The grep family of commands
  • The grep command
  • The fgrep command
  • The egrep command

FILE MANIPULATION COMMANDS

  • The file command
  • The head command
  • The tail command
  • The cut command
  • The paste command
  • The pr command
  • The split and csplit commands

COMMANDS FOR COMPARING FILES

  • Compare two files with the cmp command
  • Compare two files with the comm command
  • Compare two files with the diff and sdiff commands
  • Compare large files with the bdiff command

IDENTIFY AND TRANSLATE CHARACTERS

  • od – octal dump
  • Use cat to display non-printing characters
  • The expand and unexpand commands
  • The tr command

SORTING FILES

  • The sort command
  • Specify sort keys with -k
  • Sort by column positions
  • The uniq command

INTRODUCTION TO THE PATTERN SCANNING UTILITY – AWK

  • Introduction and command line syntax
  • The awk program structure
  • Use regular expressions
  • Operators
  • Simple patterns
  • Extended patterns
  • Comments
  • Special patterns (BEGIN and END)
  • Program variables
    • Built-in variables
    • User defined variables
  • Mathematical operators
  • Enhanced printing
  • Handling user variables

AWK PROGRAM CONTROL STRUCTURES

  • Program control structures
  • The if construct
  • The while and do … while constructs
  • The basic for construct
  • Associative array handling
  • Functions
    • Built in functions
    • The system function
    • The getline function
    • User defined functions
© 2018 Automation Minds. All rights reserved..