Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
98 views

Bash Shell Programming

This document provides an introduction to shell programming basics. It defines what a shell is and what shell programs are. It lists common shell types like Bourne, C, and Korn shells. It provides examples of simple shell programs using commands like echo, date, if/else statements, for loops, and while loops. It demonstrates how to pass arguments and get exit statuses. The document aims to explain the basic building blocks for shell scripting.

Uploaded by

Abhijeet Panwar
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
98 views

Bash Shell Programming

This document provides an introduction to shell programming basics. It defines what a shell is and what shell programs are. It lists common shell types like Bourne, C, and Korn shells. It provides examples of simple shell programs using commands like echo, date, if/else statements, for loops, and while loops. It demonstrates how to pass arguments and get exit statuses. The document aims to explain the basic building blocks for shell scripting.

Uploaded by

Abhijeet Panwar
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 21

Basics of Shell Programming

Whats Shell? Its acts an interface between the user and OS (kernel).Its known as command interpreter. When you type ls : shell finds cmd (/usr/bin). shell runs cmd. you receive the output.

Whats Shell Program? Its collections of executables or commands placed in a file and executed. It provides user an option to execute a command based on some condition. It provides conditional and control statements.(if,for,while,switch-case etc )

Types of Shell Bourne shell (sh) C shell (csh) TC shell (tcsh) Korn shell (ksh) Bourne Again SHell (bash)

Simple Shell Programs

#print date and time - today.sh echo "Today is:" date

Save it as today.sh
Run: sh today.sh

#sample.sh #!/bin/sh # assign a value: a="hello world" # now print the content of

"a":
echo "A is:"

echo $a

#ex-2 grep word in a file - grep_ex.sh echo "Enter the search string:" read string echo "Enter the file name:" read filename grep -n "$string" $filename

If statement Type 1: if condition is true then do this if Type 2: if condition is true then do this else do that if

#if stmt - if_ex.sh echo "Enter the search string:" read string echo "Enter the file name:" read filename grep -n "$string" $filename # $? gives exit status of last command if [ $? -eq 0 ] then echo " Yes,the word present in the file" else echo "No,word not present" fi

o/p : [oss@pc021698 ~]$ sh if_ex.sh Enter the search string: date Enter the file name: today.sh 2:date Yes,the word present in the file o/p: [oss@pc021698 ~]$ sh if_ex.sh Enter the search string: year Enter the file name: today.sh No,word not present

Passing values from command line: $0 - Program name $1 - First argument $2 - Second arg. $# - No.of arg $? - Exit status

#print date and time and cmd arg - today_1.sh echo "Today is:" date echo No .of arg:$# echo Program name:$0 o/p: [oss@pc021698 ~]$ sh today_1.sh Today is: Fri Mar 7 00:28:27 IST 2008 No .of arg:0 Program name:today_1.sh

#grep using cmd line -grep_ex2.sh echo "Entered search string is:"$1 echo "Entered file name :"$2 grep -n "$1" $2 # $? gives exit status of last command if [ $? -eq 0 ] then echo " Yes,the word present in the file" else echo "No,word not present" fi

o/p: [oss@pc021698 ~]$ sh grep_ex2.sh date today.sh Entered search string is:date Entered file name :today.sh 2:date Yes,the word present in the file

#simple for loop for i in 1 2 3 do echo "==>$i" done #for loop - for_ex.sh for file in *. do echo Hi done #simple for loop-3 for (( j = 1 ; j <= 5; j++ )) do echo -n "$j " done

#print files with extension .c for file in *.c do echo "Filename==>$file" #place any no.of cmds cp $file /home/oss/cprogs done

while loop syntax


while [ condition ]

do
code block;

done

#while_ex.sh

verify="n"
while [ "$verify" != y ]

do
echo "Enter option: "

read option
echo "You entered $option. Is this correct? (y/n)" read verify

done

Thank You !!!! Happy Learning & Happy Coding :-) Don't forgot to checkout Online Linux Terminal www.webminal.org

You might also like