SlideShare uma empresa Scribd logo
1 de 27
Shell Scripting (Bash shell only)
by - Akshay
Agenda
In this part of presentation, We will cover…
• Introduction to shell programming,
• How to read/write/execute a script.
Assumptions
Before starting with this you should know-
• How to use text editor such as vi/vim,
• Basic Linux commands.
December 15
What is SHELL ?
December 15
• Shell is just an interface to access an operating
system
• Shell reads command from user and tells Linux OS
what users want.
Shell
December 15
• Simply, the shell is a program that takes
your commands from the keyboard and
gives them to the operating system to
perform.
• In the old days, Shell was the only user
interface available on a Unix/Linux
computer. Nowadays, we have GUIs in
addition to the shell.
Some commands to play with shell
December 15
Tip: To find all available shells in your system type following command:
$ cat /etc/shells
Note that each shell does the same job, but each understand a different command
syntax and provides different built-in functions.
****In MS-DOS, Shell name is COMMAND.COM which is also used for same purpose,
but it's not as powerful as our Linux Shells are!
.
What is my current SHELL
December 15
Tip: To find your current shell type following command
$ echo $SHELL
Hint: Bash  which stands for Bourne Again SHell, an enhanced version of the original
Bourne shell program, sh, written by Steve Bourne
Tip: To find process-id of current shell.
$ ps -p $$
Further information
December 15
To read more information –
$man bash
$info bash
Mr. Shell
December 15
What is Shell Script & Why should I learn scripting
??
December 15
Shell Script
basically scripts are collections of commands that are
stored in a file. The shell can read this file and act on the
commands as if they were typed at the keyboard.
We have thousands of commands available for the
command line user, Can we remember them all? The
answer is, “No”. The real power of the computer is its
ability to do the work for you. To get it to do that, we
use the power of the shell to automate things. We write
scripts.
What are scripts good for?
December 15
A wide range of tasks can be automated. Here are some
of the things I automate with scripts:
• On every 1st day of a month, linux-servers backup their
configurations and copy it to a “Window/Storage machine“, and
delete old backups on successful execution so that we always have
latest backup with us. This is performed by a script.
• A script on a single click automatically does health check-up on
multiple servers and reports the status with colors (Red-> Critical,
Yellow-> Warning , Green -> OK) from all servers. A sample report is
attached .(Click here to see)
• Script can sends us an email message if a process is down.
Choice is yours 
December 15
OR
How to write shell script
December 15
Following steps are required to write shell script:
(1) Use any editor like vi to write shell script.
(2) After writing shell script set execute permission for your
script as follows-
Syntax:
chmod permission your-script-name
Examples:
$ chmod +x your-script-name
$ chmod +x abcd.sh
How to execute your script.
Execute your script as
Syntax:
bash your-script-name
sh your-script-name
ksh your-script-name
./your-script-name
Examples:
$ bash abc.sh
$ sh abc.sh
$ ./abc.sh
December 15
First Script
December 15
Before starting any thing , I will recommend every one to create a Linux Virtual
machine on your laptop/PC . VM will be safe for testing . Do not try any script on
production servers (If you face any difficulty while creating VM , let me know after
this session )
First Script
• Login to your Linux machine, create a test directory
which will hold all of our test scripts.
• In my case, I have created a directory called “test” ,
which will hold my test scripts .
December 15
First Script
• To create a shell script, you use a text editor.
$ vi my_script
• Press “i” to enter in “insert mode” of vi editor
December 15
First Script
• Write logic of your script .
• Press “Esc” key twice to exit from “insert mode”.
• Type :wq! and hit the entre key to save your script
and exit from vi-editor.
• Type “chmod +x my_script” to make it executable.
December 15
Explanation
#!/bin/bash
# My first script
echo "Hello World!"
echo "How are you.“
• The first line of the script is important. This is a special clue given to the
shell indicating what “shell” is used to interpret this script. In this case, it
is /bin/bash.
• The second line is a comment. Everything that appears after a "#" symbol is
ignored by bash.
• The last two lines are echo commands. This command simply prints what it
is given on the display.
December 15
Explanation
December 15
We just covered “echo” command ; It is used to print given text on screen , along with
this you can also use echo command to make Alarm which will makes a BEEP sound, you
can also use echo command to print text in attractive colors.
Since , this session is limited to only introduction , we will learn this options in another
session .
Colored output
Alarm with echo command
How to give your keyboard inputs to script ??
Read command is used to pass your keyboard inputs to script .
• Syntax:
read your-variable-name
• Examples:
$ read my_variable
Now to read the value stored in a variable use “echo” command.
• Syntax:
echo $your-variable-name (Note: “$” before variable name)
• Examples:
$ echo $my_variable
December 15
Second Script
• Now we will make a second script which will ask user
to give some inputs and then it will print those inputs
to screen.
#!/bin/bash
# My second script
echo “What is in your mind…."
read your_input
echo
echo "Your input was : $your_input"
December 15
How to hide your inputs ??
December 15
In the same direction , suppose ,script has asked you to enter your password
and you do not want it to be visible on screen while typing…. In this kind of
situation , everything will be same and you just need to put “-s” (suppress)
option with read command. .
#!/bin/bash
# My 3rd script
echo "Please enter your password"
read -s my_password
echo
echo "Yeah ! i have hacked your password : $my_password"
• In same direction , you can also set a timeout for
users to give there inputs, i.e. if your does not give his
input in given time then , script will stop its execution
after timeout.
• Change command read your_input to read -t 10 your_input in
the 2nd script we made in this session , and see the
difference.
$ read –t time_in_second name_of_varibale
Example read -t 10 abc (timeout after 10 seconds)
December 15
Echo + read = (read –p)
• As we saw in previous 2 scripts , while giving inputs to
script from keyboard we used read and echo
command in pair. We can save one line if use “-p”
(small “P”) with the read command.
$echo “What is in your mind”
$read my_input
$read –p “What is in your mind” my_input
December 15
Feel free to contact me
Akshay Siwal
Email :
akshay231990@gmail.com
December 15
Thank You
December 15

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Introduction to Shell script
Introduction to Shell scriptIntroduction to Shell script
Introduction to Shell script
 
Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013
 
Linux Administration
Linux AdministrationLinux Administration
Linux Administration
 
Terminal Commands (Linux - ubuntu) (part-1)
Terminal Commands  (Linux - ubuntu) (part-1)Terminal Commands  (Linux - ubuntu) (part-1)
Terminal Commands (Linux - ubuntu) (part-1)
 
Linux File System
Linux File SystemLinux File System
Linux File System
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
Basics of shell programming
Basics of shell programmingBasics of shell programming
Basics of shell programming
 
Introduction to Linux
Introduction to Linux Introduction to Linux
Introduction to Linux
 
Basic 50 linus command
Basic 50 linus commandBasic 50 linus command
Basic 50 linus command
 
Course 102: Lecture 13: Regular Expressions
Course 102: Lecture 13: Regular Expressions Course 102: Lecture 13: Regular Expressions
Course 102: Lecture 13: Regular Expressions
 
Linux systems - Linux Commands and Shell Scripting
Linux systems - Linux Commands and Shell ScriptingLinux systems - Linux Commands and Shell Scripting
Linux systems - Linux Commands and Shell Scripting
 
Basic command ppt
Basic command pptBasic command ppt
Basic command ppt
 
Basic commands of linux
Basic commands of linuxBasic commands of linux
Basic commands of linux
 
Linux commands
Linux commandsLinux commands
Linux commands
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
Linux Internals - Part II
Linux Internals - Part IILinux Internals - Part II
Linux Internals - Part II
 
Basic unix commands
Basic unix commandsBasic unix commands
Basic unix commands
 
Linux Basic Commands
Linux Basic CommandsLinux Basic Commands
Linux Basic Commands
 
Linux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platformLinux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platform
 
Linux basic commands
Linux basic commandsLinux basic commands
Linux basic commands
 

Destaque

Advanced penetration testing - Amarendra Godbole
Advanced penetration testing - Amarendra GodboleAdvanced penetration testing - Amarendra Godbole
Advanced penetration testing - Amarendra GodboleIndicThreads
 
Collaboration, Big Data and the search for the Higgs Boson
Collaboration, Big Data and the  search for the Higgs BosonCollaboration, Big Data and the  search for the Higgs Boson
Collaboration, Big Data and the search for the Higgs BosonSuma Pria Tunggal
 
Quick start bash script
Quick start   bash scriptQuick start   bash script
Quick start bash scriptSimon Su
 
Bash Shell Scripting
Bash Shell ScriptingBash Shell Scripting
Bash Shell ScriptingRaghu nath
 
Vodafone beta factory - GEC 2015
Vodafone beta factory - GEC 2015Vodafone beta factory - GEC 2015
Vodafone beta factory - GEC 2015Marcello Viti
 
Secure Shell - a Presentation on Ethical Hacking
Secure Shell - a Presentation on Ethical HackingSecure Shell - a Presentation on Ethical Hacking
Secure Shell - a Presentation on Ethical HackingNitish Kasar
 
Linux Bash Shell Cheat Sheet for Beginners
Linux Bash Shell Cheat Sheet for BeginnersLinux Bash Shell Cheat Sheet for Beginners
Linux Bash Shell Cheat Sheet for BeginnersDavide Ciambelli
 
Introduction to anonymity network tor
Introduction to anonymity network torIntroduction to anonymity network tor
Introduction to anonymity network torKhaled Mosharraf
 
Bash shell scripting
Bash shell scriptingBash shell scripting
Bash shell scriptingVIKAS TIWARI
 
KOHA - Open Source Library Management Software
KOHA - Open Source Library Management SoftwareKOHA - Open Source Library Management Software
KOHA - Open Source Library Management Softwarerajivkumarmca
 
Unix Shell Script
Unix Shell ScriptUnix Shell Script
Unix Shell Scriptstudent
 
Bash shell
Bash shellBash shell
Bash shellxylas121
 
Tor the onion router
Tor  the onion routerTor  the onion router
Tor the onion routerAshly Liza
 

Destaque (20)

Advanced penetration testing - Amarendra Godbole
Advanced penetration testing - Amarendra GodboleAdvanced penetration testing - Amarendra Godbole
Advanced penetration testing - Amarendra Godbole
 
Collaboration, Big Data and the search for the Higgs Boson
Collaboration, Big Data and the  search for the Higgs BosonCollaboration, Big Data and the  search for the Higgs Boson
Collaboration, Big Data and the search for the Higgs Boson
 
Quick start bash script
Quick start   bash scriptQuick start   bash script
Quick start bash script
 
Tor Pivoting Networks Share
Tor Pivoting Networks Share Tor Pivoting Networks Share
Tor Pivoting Networks Share
 
Bash Shell Scripting
Bash Shell ScriptingBash Shell Scripting
Bash Shell Scripting
 
Vodafone beta factory - GEC 2015
Vodafone beta factory - GEC 2015Vodafone beta factory - GEC 2015
Vodafone beta factory - GEC 2015
 
Secure Shell - a Presentation on Ethical Hacking
Secure Shell - a Presentation on Ethical HackingSecure Shell - a Presentation on Ethical Hacking
Secure Shell - a Presentation on Ethical Hacking
 
Linux Bash Shell Cheat Sheet for Beginners
Linux Bash Shell Cheat Sheet for BeginnersLinux Bash Shell Cheat Sheet for Beginners
Linux Bash Shell Cheat Sheet for Beginners
 
Shell Scripting
Shell ScriptingShell Scripting
Shell Scripting
 
Introduction to anonymity network tor
Introduction to anonymity network torIntroduction to anonymity network tor
Introduction to anonymity network tor
 
Bash shell scripting
Bash shell scriptingBash shell scripting
Bash shell scripting
 
Ethical hacking with Python tools
Ethical hacking with Python toolsEthical hacking with Python tools
Ethical hacking with Python tools
 
NoSQL databases
NoSQL databasesNoSQL databases
NoSQL databases
 
Open source Library Management Systems
Open source Library Management SystemsOpen source Library Management Systems
Open source Library Management Systems
 
KOHA - Open Source Library Management Software
KOHA - Open Source Library Management SoftwareKOHA - Open Source Library Management Software
KOHA - Open Source Library Management Software
 
Unix Shell Script
Unix Shell ScriptUnix Shell Script
Unix Shell Script
 
How TOR works?
How TOR works?How TOR works?
How TOR works?
 
Bash shell
Bash shellBash shell
Bash shell
 
Tor the onion router
Tor  the onion routerTor  the onion router
Tor the onion router
 
Wireshark Basics
Wireshark BasicsWireshark Basics
Wireshark Basics
 

Semelhante a Easiest way to start with Shell scripting

Shell Programming_Module2_Part2.pptx.pdf
Shell Programming_Module2_Part2.pptx.pdfShell Programming_Module2_Part2.pptx.pdf
Shell Programming_Module2_Part2.pptx.pdfHIMANKMISHRA2
 
basic shell scripting syntex
basic shell scripting syntexbasic shell scripting syntex
basic shell scripting syntexKsd Che
 
NYPHP March 2009 Presentation
NYPHP March 2009 PresentationNYPHP March 2009 Presentation
NYPHP March 2009 Presentationbrian_dailey
 
390aLecture05_12sp.ppt
390aLecture05_12sp.ppt390aLecture05_12sp.ppt
390aLecture05_12sp.pptmugeshmsd5
 
The Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docxThe Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docxSUBHI7
 
Linux: Beyond ls and cd
Linux: Beyond ls and cdLinux: Beyond ls and cd
Linux: Beyond ls and cdjacko91
 
Part 4 Scripting and Virtualization (due Week 7)Objectives1. .docx
Part 4 Scripting and Virtualization (due Week 7)Objectives1. .docxPart 4 Scripting and Virtualization (due Week 7)Objectives1. .docx
Part 4 Scripting and Virtualization (due Week 7)Objectives1. .docxkarlhennesey
 
Course 102: Lecture 10: Learning About the Shell
Course 102: Lecture 10: Learning About the Shell Course 102: Lecture 10: Learning About the Shell
Course 102: Lecture 10: Learning About the Shell Ahmed El-Arabawy
 
Shell scripting _how_to_automate_command_l_-_jason_cannon
Shell scripting _how_to_automate_command_l_-_jason_cannonShell scripting _how_to_automate_command_l_-_jason_cannon
Shell scripting _how_to_automate_command_l_-_jason_cannonSyed Altaf
 
Shell & Shell Script
Shell & Shell ScriptShell & Shell Script
Shell & Shell ScriptAmit Ghosh
 
Shell & Shell Script
Shell & Shell Script Shell & Shell Script
Shell & Shell Script Amit Ghosh
 
L lpic1-v3-103-1-pdf
L lpic1-v3-103-1-pdfL lpic1-v3-103-1-pdf
L lpic1-v3-103-1-pdfhellojdr
 
Shell Scripting and Programming.pptx
Shell Scripting and Programming.pptxShell Scripting and Programming.pptx
Shell Scripting and Programming.pptxHarsha Patel
 

Semelhante a Easiest way to start with Shell scripting (20)

Intro_Unix_Ppt
Intro_Unix_PptIntro_Unix_Ppt
Intro_Unix_Ppt
 
Shell Programming_Module2_Part2.pptx.pdf
Shell Programming_Module2_Part2.pptx.pdfShell Programming_Module2_Part2.pptx.pdf
Shell Programming_Module2_Part2.pptx.pdf
 
Licão 05 scripts exemple
Licão 05 scripts exempleLicão 05 scripts exemple
Licão 05 scripts exemple
 
basic shell scripting syntex
basic shell scripting syntexbasic shell scripting syntex
basic shell scripting syntex
 
60761 linux
60761 linux60761 linux
60761 linux
 
Lab4 scripts
Lab4 scriptsLab4 scripts
Lab4 scripts
 
Shell programming
Shell programmingShell programming
Shell programming
 
NYPHP March 2009 Presentation
NYPHP March 2009 PresentationNYPHP March 2009 Presentation
NYPHP March 2009 Presentation
 
390aLecture05_12sp.ppt
390aLecture05_12sp.ppt390aLecture05_12sp.ppt
390aLecture05_12sp.ppt
 
The Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docxThe Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docx
 
Linux: Beyond ls and cd
Linux: Beyond ls and cdLinux: Beyond ls and cd
Linux: Beyond ls and cd
 
Part 4 Scripting and Virtualization (due Week 7)Objectives1. .docx
Part 4 Scripting and Virtualization (due Week 7)Objectives1. .docxPart 4 Scripting and Virtualization (due Week 7)Objectives1. .docx
Part 4 Scripting and Virtualization (due Week 7)Objectives1. .docx
 
Course 102: Lecture 10: Learning About the Shell
Course 102: Lecture 10: Learning About the Shell Course 102: Lecture 10: Learning About the Shell
Course 102: Lecture 10: Learning About the Shell
 
Shell scripting _how_to_automate_command_l_-_jason_cannon
Shell scripting _how_to_automate_command_l_-_jason_cannonShell scripting _how_to_automate_command_l_-_jason_cannon
Shell scripting _how_to_automate_command_l_-_jason_cannon
 
Shell & Shell Script
Shell & Shell ScriptShell & Shell Script
Shell & Shell Script
 
Shell & Shell Script
Shell & Shell Script Shell & Shell Script
Shell & Shell Script
 
dotor.pdf
dotor.pdfdotor.pdf
dotor.pdf
 
What is a shell script
What is a shell scriptWhat is a shell script
What is a shell script
 
L lpic1-v3-103-1-pdf
L lpic1-v3-103-1-pdfL lpic1-v3-103-1-pdf
L lpic1-v3-103-1-pdf
 
Shell Scripting and Programming.pptx
Shell Scripting and Programming.pptxShell Scripting and Programming.pptx
Shell Scripting and Programming.pptx
 

Último

%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationShrmpro
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdfPearlKirahMaeRagusta1
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durbanmasabamasaba
 

Último (20)

%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions Presentation
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 

Easiest way to start with Shell scripting

  • 1. Shell Scripting (Bash shell only) by - Akshay
  • 2. Agenda In this part of presentation, We will cover… • Introduction to shell programming, • How to read/write/execute a script.
  • 3. Assumptions Before starting with this you should know- • How to use text editor such as vi/vim, • Basic Linux commands. December 15
  • 4. What is SHELL ? December 15 • Shell is just an interface to access an operating system • Shell reads command from user and tells Linux OS what users want.
  • 5. Shell December 15 • Simply, the shell is a program that takes your commands from the keyboard and gives them to the operating system to perform. • In the old days, Shell was the only user interface available on a Unix/Linux computer. Nowadays, we have GUIs in addition to the shell.
  • 6. Some commands to play with shell December 15 Tip: To find all available shells in your system type following command: $ cat /etc/shells Note that each shell does the same job, but each understand a different command syntax and provides different built-in functions. ****In MS-DOS, Shell name is COMMAND.COM which is also used for same purpose, but it's not as powerful as our Linux Shells are! .
  • 7. What is my current SHELL December 15 Tip: To find your current shell type following command $ echo $SHELL Hint: Bash  which stands for Bourne Again SHell, an enhanced version of the original Bourne shell program, sh, written by Steve Bourne Tip: To find process-id of current shell. $ ps -p $$
  • 8. Further information December 15 To read more information – $man bash $info bash
  • 10. What is Shell Script & Why should I learn scripting ?? December 15 Shell Script basically scripts are collections of commands that are stored in a file. The shell can read this file and act on the commands as if they were typed at the keyboard. We have thousands of commands available for the command line user, Can we remember them all? The answer is, “No”. The real power of the computer is its ability to do the work for you. To get it to do that, we use the power of the shell to automate things. We write scripts.
  • 11. What are scripts good for? December 15 A wide range of tasks can be automated. Here are some of the things I automate with scripts: • On every 1st day of a month, linux-servers backup their configurations and copy it to a “Window/Storage machine“, and delete old backups on successful execution so that we always have latest backup with us. This is performed by a script. • A script on a single click automatically does health check-up on multiple servers and reports the status with colors (Red-> Critical, Yellow-> Warning , Green -> OK) from all servers. A sample report is attached .(Click here to see) • Script can sends us an email message if a process is down.
  • 12. Choice is yours  December 15 OR
  • 13. How to write shell script December 15 Following steps are required to write shell script: (1) Use any editor like vi to write shell script. (2) After writing shell script set execute permission for your script as follows- Syntax: chmod permission your-script-name Examples: $ chmod +x your-script-name $ chmod +x abcd.sh
  • 14. How to execute your script. Execute your script as Syntax: bash your-script-name sh your-script-name ksh your-script-name ./your-script-name Examples: $ bash abc.sh $ sh abc.sh $ ./abc.sh December 15
  • 15. First Script December 15 Before starting any thing , I will recommend every one to create a Linux Virtual machine on your laptop/PC . VM will be safe for testing . Do not try any script on production servers (If you face any difficulty while creating VM , let me know after this session )
  • 16. First Script • Login to your Linux machine, create a test directory which will hold all of our test scripts. • In my case, I have created a directory called “test” , which will hold my test scripts . December 15
  • 17. First Script • To create a shell script, you use a text editor. $ vi my_script • Press “i” to enter in “insert mode” of vi editor December 15
  • 18. First Script • Write logic of your script . • Press “Esc” key twice to exit from “insert mode”. • Type :wq! and hit the entre key to save your script and exit from vi-editor. • Type “chmod +x my_script” to make it executable. December 15
  • 19. Explanation #!/bin/bash # My first script echo "Hello World!" echo "How are you.“ • The first line of the script is important. This is a special clue given to the shell indicating what “shell” is used to interpret this script. In this case, it is /bin/bash. • The second line is a comment. Everything that appears after a "#" symbol is ignored by bash. • The last two lines are echo commands. This command simply prints what it is given on the display. December 15
  • 20. Explanation December 15 We just covered “echo” command ; It is used to print given text on screen , along with this you can also use echo command to make Alarm which will makes a BEEP sound, you can also use echo command to print text in attractive colors. Since , this session is limited to only introduction , we will learn this options in another session . Colored output Alarm with echo command
  • 21. How to give your keyboard inputs to script ?? Read command is used to pass your keyboard inputs to script . • Syntax: read your-variable-name • Examples: $ read my_variable Now to read the value stored in a variable use “echo” command. • Syntax: echo $your-variable-name (Note: “$” before variable name) • Examples: $ echo $my_variable December 15
  • 22. Second Script • Now we will make a second script which will ask user to give some inputs and then it will print those inputs to screen. #!/bin/bash # My second script echo “What is in your mind…." read your_input echo echo "Your input was : $your_input" December 15
  • 23. How to hide your inputs ?? December 15 In the same direction , suppose ,script has asked you to enter your password and you do not want it to be visible on screen while typing…. In this kind of situation , everything will be same and you just need to put “-s” (suppress) option with read command. . #!/bin/bash # My 3rd script echo "Please enter your password" read -s my_password echo echo "Yeah ! i have hacked your password : $my_password"
  • 24. • In same direction , you can also set a timeout for users to give there inputs, i.e. if your does not give his input in given time then , script will stop its execution after timeout. • Change command read your_input to read -t 10 your_input in the 2nd script we made in this session , and see the difference. $ read –t time_in_second name_of_varibale Example read -t 10 abc (timeout after 10 seconds) December 15
  • 25. Echo + read = (read –p) • As we saw in previous 2 scripts , while giving inputs to script from keyboard we used read and echo command in pair. We can save one line if use “-p” (small “P”) with the read command. $echo “What is in your mind” $read my_input $read –p “What is in your mind” my_input December 15
  • 26. Feel free to contact me Akshay Siwal Email : akshay231990@gmail.com December 15

Notas do Editor

  1. Now some of you might be wondering what is so special about shell scripting and why do I have to use it . There are lots of advantages that shell script provide over other programing language…. Some of them are …. Its very convenient and easy to built program in shell and it is even more convenient to debug them . Also there are 1000 of built in or supportive programs like awk , sed etc that make work easier .
  2. If there is complicated task to perform then shell script is a quick and easy way to perform .