SlideShare a Scribd company logo
UNIX Shell Script Dr. Tran, Van Hoai Faculty of Computer Science and Engineering HCMC Uni. of Technology [email_address]
What is a shell script? A  series  of OS commands for execution Stored in a  text  file #!/bin/sh rm -f /tmp/listing.tmp > /dev/null 2>&1 touch /tmp/listing.tmp ls -l [a-z]*.doc | sort > /tmp/listing.tmp lpr -Ppostscript_1 /tmp/listing.tmp rm -f /tmp/listing.tmp
Components of a script #!/bin/sh rm -f /tmp/listing.tmp > /dev/null 2>&1 touch /tmp/listing.tmp #  This is a comment ls -l [a-z]*.doc | sort > /tmp/listing.tmp lpr -Ppostscript_1 /tmp/listing.tmp rm -f /tmp/listing.tmp Shell in use (sh, bash, csh) Comment Command
How to invoke a script Correct way $ /bin/bash my_script arg_1 arg_2 Simple way $ my_script arg_1 arg_2 The first line specifying the shell  must be provided  in simple way
How to be helped Man pages hoai@moon:~>  man bash ... hoai@moon:~>  man sh ...
Definitions Blank = chunk of  tab  or  space Name = sequence of  ASCII letters ,  digits ,  underscores ,  beginning with a letter or underscore Argument = string supplied on command-line
Example (argument) (1) #!/bin/sh ############################## echo "Script name is   [$0]" echo "First argument is  [$1]" echo "Second argument is   [$2]" echo "This process ID is   [$$]" echo "This argument count is  [$#]" echo "All arguments   [$@]"
Example (argument) (2) hoai@moon:~>  my_script.sh hoai 1 university Script name is   [my_script.sh] First argument is  [hoai] Second argument is  [1] This process ID is  [5401] This argument count is  [3] All arguments  [hoai 1 university]
Filename metacharacters Current working directory ( $PWD ) ~+ Previous working directory ( $OLDPWD ) ~- Home directory of user  name ~ name Home directory of the current user ~ Match any character not enclosed as above  [! abc ...] Match any one of the enclosed characters; a hyphen can specify a range (e.g., a-z, A-Z, 0–9) [ abc ...] Match any single character ? Match any string of zero or more characters *
Simple regular expressions (Korn shell) Pattern = sequence of patterns  separated by “|” Match any strings that don't match  pattern   !( pattern ) Match exactly one instance of  pattern   @( pattern ) Match one or more instances of  pattern   +( pattern ) Match zero or more instances of  pattern   *( pattern ) Match zero or one instance of  pattern   ?( pattern )
Example (metacharacters) List files having prefix  new $ ls new* Cat files having prefix  ch  and one more letter $ cat ch? Vi files starting by letters from  D  to  E $ vi [D-R]* Print files not  *.o  and  core  (Korn shell) $ pr !(*.o|core) | lp
Quoting Charater following  \  taken literally \ Everything taken literally '' Everything taken literally, except $  (variable substitution) `  (command substitution) “   (ending mark) ""
Example (quoting) $ echo 'my class is "unix and tools"' My class is "unix and tools" $ echo "Well, isn't that \"good\" ?" Well, isn't that "good" ? $ echo "You have `ls | wc –l` files in `pwd`" You have 34 files in /home/hoai $ echo "The value of \$x is $x" The value of $x is 100
Variables (1) Use  var  if set, otherwise, print  value  and exit ${ var :? value } Use  value  of  var  is set, otherwise use nothing ${ var :+ value } Use the length of  var ${# var } Use the number of positional arguments ${#*}  or  ${#@} Use  var  if set, otherwise, user  value  and assign it to  var ${ var := value } Use  var  if set, otherwise, use  value ${ var :- value } Use value of  var ${ var } Set variable to value var=value …
Variables (2) Same as  # pattern . Remove longest matching ${ var ## pattern } Same as  %pattern . Remove longest matching ${ var %% pattern } Use value of  var  after removing  pattern  from the right. Remove shortest matching ${ var % pattern } Use value of  var  after removing  pattern  from the left. Remove shortest matching ${ var # pattern }
Command forms OR cmd1 || cmd2 AND; cmd1, then cmd2 if (cmd succeeds) cmd1 && cmd2 POSIX shell arithmetic substitution  cmd $((expression)) POSIX Command substitution (nesting is allowed) cmd1 $(cmd2) Command substitution cmd1 `cmd2` Pipe cmd1  |  cmd2 NOT; change exit status ! cmd Commands as a group in a subshell ( cmd1  ;  cmd2 ) Commands as a group in current shell { cmd1  ;  cmd2 } Multiple commands on the same line cmd1  ;  cmd2
Example (command forms) $  nroff file > file.txt & Format in the background   $  cd; ls Execute sequentially   $  (date; who; pwd) > logfile All output is redirected   $  sort file | pr -3 | lp Sort file, page output, then print   $  vi 'grep -l ifdef *.c' Edit files found by grep   $  grep XX file && lp file Print file if it contains the pattern;   $  grep XX file || echo "XX not found" otherwise, echo an error message
Simple commands Create date strings date Evaluate variables eval Transform characters tr 'a' 'b' Simple arithmetic processor  expr Predicate or conditional processor [( test )] Access lines in files head/tail Chop up a text by strings or characters cut Get directory name from path string dirname Get file name from path string basename Search for regular expressions grep Sort lines sort
Example (script) (1) #!/bin/bash alphabet="a b c d e"   # Initialise a string count=0  # Initialise a counter for letter in $alphabet  # Set up a loop control do   # Begin the loop count=`expr $count + 1` # Increment the counter # Display the result echo "Letter $count is [$letter]" done
Example (script) (2) alphabet="a b c d e"  # Initialise a string count=0  # Initialise a counter while [ $count -lt 5 ] # Set up a loop control do  # Begin the loop count=`expr $count + 1` # Increment the counter # Position of next letter position=`bc $count + $count - 1`  letter=`echo "$alphabet" | cut -c$position-$position`  # Get next letter  # Display the result  echo "Letter $count is [$letter]" done
Homeworks (1) Write a script for C compiler Objective: use  gcc  by default, if  gcc  is not availablle, find another compiler (ending with  cc ) instead. Write a script to convert filenames to lowercase letters Input: a directory path string Output: all filenames in the directory in lowercase
Homeworks (2) Write a script to warn users using too much space Objective: find all users of the system (/etc/passwd, cut), check if someone uses > 1GB, mail him a warning message
Conditional structure Loop structure Function File input/output Array are  NEXT

More Related Content

What's hot (20)

PPTX
Bash Shell Scripting
Raghu nath
 
PDF
Introduction to shell scripting
Corrado Santoro
 
PPT
Unix Shell Scripting Basics
Sudharsan S
 
PDF
Shell scripting
Manav Prasad
 
PPT
Shell Scripting
Gaurav Shinde
 
PPT
Chap06
Dr.Ravi
 
PPT
Unix Shell Scripting Basics
Dr.Ravi
 
PPT
Unix And Shell Scripting
Jaibeer Malik
 
PDF
Quick start bash script
Simon Su
 
PPTX
Unix shell scripting
Pavan Devarakonda
 
PPT
Shell Scripts
Dr.Ravi
 
PPT
Bash shell
xylas121
 
PDF
Shell scripting
Ashrith Mekala
 
PPTX
Unix - Shell Scripts
ananthimurugesan
 
PPTX
Bash Shell Scripting
Raghu nath
 
PDF
Shell scripting
Geeks Anonymes
 
PDF
COSCUP2012: How to write a bash script like the python?
Lloyd Huang
 
PDF
Scripting and the shell in LINUX
Bhushan Pawar -Java Trainer
 
RTF
Unix lab manual
Chaitanya Kn
 
PPTX
Easiest way to start with Shell scripting
Akshay Siwal
 
Bash Shell Scripting
Raghu nath
 
Introduction to shell scripting
Corrado Santoro
 
Unix Shell Scripting Basics
Sudharsan S
 
Shell scripting
Manav Prasad
 
Shell Scripting
Gaurav Shinde
 
Chap06
Dr.Ravi
 
Unix Shell Scripting Basics
Dr.Ravi
 
Unix And Shell Scripting
Jaibeer Malik
 
Quick start bash script
Simon Su
 
Unix shell scripting
Pavan Devarakonda
 
Shell Scripts
Dr.Ravi
 
Bash shell
xylas121
 
Shell scripting
Ashrith Mekala
 
Unix - Shell Scripts
ananthimurugesan
 
Bash Shell Scripting
Raghu nath
 
Shell scripting
Geeks Anonymes
 
COSCUP2012: How to write a bash script like the python?
Lloyd Huang
 
Scripting and the shell in LINUX
Bhushan Pawar -Java Trainer
 
Unix lab manual
Chaitanya Kn
 
Easiest way to start with Shell scripting
Akshay Siwal
 

Viewers also liked (8)

ODP
Shellprogramming
Andrew Vandever
 
PDF
Bash Beginners Guide
Dinesh Vasudevan
 
PPT
Purpose of command interpreter
Sumant Diwakar
 
PDF
operating system structure
Waseem Ud Din Farooqui
 
PDF
SysProg-Tutor 02 Introduction to Unix Operating System
Wongyos Keardsri
 
PPTX
UNIX Operating System
Unless Yuriko
 
PPTX
Unix Operating System
subhsikha
 
PPTX
Unix operating system
ABhay Panchal
 
Shellprogramming
Andrew Vandever
 
Bash Beginners Guide
Dinesh Vasudevan
 
Purpose of command interpreter
Sumant Diwakar
 
operating system structure
Waseem Ud Din Farooqui
 
SysProg-Tutor 02 Introduction to Unix Operating System
Wongyos Keardsri
 
UNIX Operating System
Unless Yuriko
 
Unix Operating System
subhsikha
 
Unix operating system
ABhay Panchal
 
Ad

Similar to Talk Unix Shell Script (20)

PPT
Unix
nazeer pasha
 
PPT
Shell programming
Moayad Moawiah
 
PDF
(Ebook) linux shell scripting tutorial
jayaramprabhu
 
PDF
21bUc8YeDzZpE
Aniruddh Tyagi
 
PDF
21bUc8YeDzZpE
aniruddh Tyagi
 
PDF
21bUc8YeDzZpE
aniruddh Tyagi
 
PPTX
shellScriptAlt.pptx
NiladriDey18
 
PPTX
Shell scripting
Mufaddal Haidermota
 
PPTX
First steps in C-Shell
Brahma Killampalli
 
PDF
One-Liners to Rule Them All
egypt
 
PPT
COMELEC III - Bash unit 1
Binsent Ribera
 
PDF
Shell Scripting crash course.pdf
harikrishnapolaki
 
PDF
Slides
abhishekvirmani
 
PPTX
Productive bash
Ayla Khan
 
PDF
Unix 1st sem lab programs a - VTU Karnataka
iCreateWorld
 
PPT
01c shell
Kevin Lee
 
KEY
Advanced Shell Scripting
Alessandro Manfredi
 
PDF
Bash Cheat Sheet - SniferL4bs
Jose Moruno Cadima
 
Shell programming
Moayad Moawiah
 
(Ebook) linux shell scripting tutorial
jayaramprabhu
 
21bUc8YeDzZpE
Aniruddh Tyagi
 
21bUc8YeDzZpE
aniruddh Tyagi
 
21bUc8YeDzZpE
aniruddh Tyagi
 
shellScriptAlt.pptx
NiladriDey18
 
Shell scripting
Mufaddal Haidermota
 
First steps in C-Shell
Brahma Killampalli
 
One-Liners to Rule Them All
egypt
 
COMELEC III - Bash unit 1
Binsent Ribera
 
Shell Scripting crash course.pdf
harikrishnapolaki
 
Productive bash
Ayla Khan
 
Unix 1st sem lab programs a - VTU Karnataka
iCreateWorld
 
01c shell
Kevin Lee
 
Advanced Shell Scripting
Alessandro Manfredi
 
Bash Cheat Sheet - SniferL4bs
Jose Moruno Cadima
 
Ad

More from Dr.Ravi (18)

PDF
Corporate Overview
Dr.Ravi
 
PDF
Excel For The Ceo
Dr.Ravi
 
PDF
Project Specs Pf
Dr.Ravi
 
PDF
Pf Day5
Dr.Ravi
 
PDF
Assignments Programming Fundamentals
Dr.Ravi
 
PDF
Hdd Chssc
Dr.Ravi
 
PDF
Chssc Day3
Dr.Ravi
 
PDF
Chssc Day1
Dr.Ravi
 
PDF
Pf Day3
Dr.Ravi
 
PDF
Ldd Pf
Dr.Ravi
 
PDF
Chssc Assignments
Dr.Ravi
 
PDF
Chssc Day4
Dr.Ravi
 
PDF
Chssc Day2
Dr.Ravi
 
PPT
Unix Lec2
Dr.Ravi
 
PDF
Unix Book
Dr.Ravi
 
PPT
Unix Basics 04sp
Dr.Ravi
 
PDF
Wicked Cool Shell Scripts
Dr.Ravi
 
PPT
SAP INTRO
Dr.Ravi
 
Corporate Overview
Dr.Ravi
 
Excel For The Ceo
Dr.Ravi
 
Project Specs Pf
Dr.Ravi
 
Pf Day5
Dr.Ravi
 
Assignments Programming Fundamentals
Dr.Ravi
 
Hdd Chssc
Dr.Ravi
 
Chssc Day3
Dr.Ravi
 
Chssc Day1
Dr.Ravi
 
Pf Day3
Dr.Ravi
 
Ldd Pf
Dr.Ravi
 
Chssc Assignments
Dr.Ravi
 
Chssc Day4
Dr.Ravi
 
Chssc Day2
Dr.Ravi
 
Unix Lec2
Dr.Ravi
 
Unix Book
Dr.Ravi
 
Unix Basics 04sp
Dr.Ravi
 
Wicked Cool Shell Scripts
Dr.Ravi
 
SAP INTRO
Dr.Ravi
 

Recently uploaded (20)

PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
July Patch Tuesday
Ivanti
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Biography of Daniel Podor.pdf
Daniel Podor
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
July Patch Tuesday
Ivanti
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 

Talk Unix Shell Script

  • 1. UNIX Shell Script Dr. Tran, Van Hoai Faculty of Computer Science and Engineering HCMC Uni. of Technology [email_address]
  • 2. What is a shell script? A series of OS commands for execution Stored in a text file #!/bin/sh rm -f /tmp/listing.tmp > /dev/null 2>&1 touch /tmp/listing.tmp ls -l [a-z]*.doc | sort > /tmp/listing.tmp lpr -Ppostscript_1 /tmp/listing.tmp rm -f /tmp/listing.tmp
  • 3. Components of a script #!/bin/sh rm -f /tmp/listing.tmp > /dev/null 2>&1 touch /tmp/listing.tmp # This is a comment ls -l [a-z]*.doc | sort > /tmp/listing.tmp lpr -Ppostscript_1 /tmp/listing.tmp rm -f /tmp/listing.tmp Shell in use (sh, bash, csh) Comment Command
  • 4. How to invoke a script Correct way $ /bin/bash my_script arg_1 arg_2 Simple way $ my_script arg_1 arg_2 The first line specifying the shell must be provided in simple way
  • 5. How to be helped Man pages hoai@moon:~> man bash ... hoai@moon:~> man sh ...
  • 6. Definitions Blank = chunk of tab or space Name = sequence of ASCII letters , digits , underscores , beginning with a letter or underscore Argument = string supplied on command-line
  • 7. Example (argument) (1) #!/bin/sh ############################## echo "Script name is [$0]" echo "First argument is [$1]" echo "Second argument is [$2]" echo "This process ID is [$$]" echo "This argument count is [$#]" echo "All arguments [$@]"
  • 8. Example (argument) (2) hoai@moon:~> my_script.sh hoai 1 university Script name is [my_script.sh] First argument is [hoai] Second argument is [1] This process ID is [5401] This argument count is [3] All arguments [hoai 1 university]
  • 9. Filename metacharacters Current working directory ( $PWD ) ~+ Previous working directory ( $OLDPWD ) ~- Home directory of user name ~ name Home directory of the current user ~ Match any character not enclosed as above [! abc ...] Match any one of the enclosed characters; a hyphen can specify a range (e.g., a-z, A-Z, 0–9) [ abc ...] Match any single character ? Match any string of zero or more characters *
  • 10. Simple regular expressions (Korn shell) Pattern = sequence of patterns separated by “|” Match any strings that don't match pattern !( pattern ) Match exactly one instance of pattern @( pattern ) Match one or more instances of pattern +( pattern ) Match zero or more instances of pattern *( pattern ) Match zero or one instance of pattern ?( pattern )
  • 11. Example (metacharacters) List files having prefix new $ ls new* Cat files having prefix ch and one more letter $ cat ch? Vi files starting by letters from D to E $ vi [D-R]* Print files not *.o and core (Korn shell) $ pr !(*.o|core) | lp
  • 12. Quoting Charater following \ taken literally \ Everything taken literally '' Everything taken literally, except $ (variable substitution) ` (command substitution) “ (ending mark) ""
  • 13. Example (quoting) $ echo 'my class is "unix and tools"' My class is "unix and tools" $ echo "Well, isn't that \"good\" ?" Well, isn't that "good" ? $ echo "You have `ls | wc –l` files in `pwd`" You have 34 files in /home/hoai $ echo "The value of \$x is $x" The value of $x is 100
  • 14. Variables (1) Use var if set, otherwise, print value and exit ${ var :? value } Use value of var is set, otherwise use nothing ${ var :+ value } Use the length of var ${# var } Use the number of positional arguments ${#*} or ${#@} Use var if set, otherwise, user value and assign it to var ${ var := value } Use var if set, otherwise, use value ${ var :- value } Use value of var ${ var } Set variable to value var=value …
  • 15. Variables (2) Same as # pattern . Remove longest matching ${ var ## pattern } Same as %pattern . Remove longest matching ${ var %% pattern } Use value of var after removing pattern from the right. Remove shortest matching ${ var % pattern } Use value of var after removing pattern from the left. Remove shortest matching ${ var # pattern }
  • 16. Command forms OR cmd1 || cmd2 AND; cmd1, then cmd2 if (cmd succeeds) cmd1 && cmd2 POSIX shell arithmetic substitution cmd $((expression)) POSIX Command substitution (nesting is allowed) cmd1 $(cmd2) Command substitution cmd1 `cmd2` Pipe cmd1 | cmd2 NOT; change exit status ! cmd Commands as a group in a subshell ( cmd1 ; cmd2 ) Commands as a group in current shell { cmd1 ; cmd2 } Multiple commands on the same line cmd1 ; cmd2
  • 17. Example (command forms) $ nroff file > file.txt & Format in the background $ cd; ls Execute sequentially $ (date; who; pwd) > logfile All output is redirected $ sort file | pr -3 | lp Sort file, page output, then print $ vi 'grep -l ifdef *.c' Edit files found by grep $ grep XX file && lp file Print file if it contains the pattern; $ grep XX file || echo "XX not found" otherwise, echo an error message
  • 18. Simple commands Create date strings date Evaluate variables eval Transform characters tr 'a' 'b' Simple arithmetic processor expr Predicate or conditional processor [( test )] Access lines in files head/tail Chop up a text by strings or characters cut Get directory name from path string dirname Get file name from path string basename Search for regular expressions grep Sort lines sort
  • 19. Example (script) (1) #!/bin/bash alphabet="a b c d e" # Initialise a string count=0 # Initialise a counter for letter in $alphabet # Set up a loop control do # Begin the loop count=`expr $count + 1` # Increment the counter # Display the result echo "Letter $count is [$letter]" done
  • 20. Example (script) (2) alphabet="a b c d e" # Initialise a string count=0 # Initialise a counter while [ $count -lt 5 ] # Set up a loop control do # Begin the loop count=`expr $count + 1` # Increment the counter # Position of next letter position=`bc $count + $count - 1` letter=`echo "$alphabet" | cut -c$position-$position` # Get next letter # Display the result echo "Letter $count is [$letter]" done
  • 21. Homeworks (1) Write a script for C compiler Objective: use gcc by default, if gcc is not availablle, find another compiler (ending with cc ) instead. Write a script to convert filenames to lowercase letters Input: a directory path string Output: all filenames in the directory in lowercase
  • 22. Homeworks (2) Write a script to warn users using too much space Objective: find all users of the system (/etc/passwd, cut), check if someone uses > 1GB, mail him a warning message
  • 23. Conditional structure Loop structure Function File input/output Array are NEXT