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

PPT
Talk Unix Shell Script 1
PPT
Airlover 20030324 1
PPT
Unix Basics
PPT
Using Unix
PPT
Unix And C
PDF
Unix Commands
PPTX
Unix shell scripting basics
PDF
Introduction to Bash Scripting, Zyxware Technologies, CSI Students Convention...
Talk Unix Shell Script 1
Airlover 20030324 1
Unix Basics
Using Unix
Unix And C
Unix Commands
Unix shell scripting basics
Introduction to Bash Scripting, Zyxware Technologies, CSI Students Convention...

What's hot (20)

PPTX
Bash Shell Scripting
PDF
Introduction to shell scripting
PPT
Unix Shell Scripting Basics
PDF
Shell scripting
PPT
Shell Scripting
PPT
Chap06
PPT
Unix Shell Scripting Basics
PPT
Unix And Shell Scripting
PDF
Quick start bash script
PPTX
Unix shell scripting
PPT
Shell Scripts
PPT
Bash shell
PDF
Shell scripting
PPTX
Unix - Shell Scripts
PPTX
Bash Shell Scripting
PDF
Shell scripting
PDF
COSCUP2012: How to write a bash script like the python?
PDF
Scripting and the shell in LINUX
RTF
Unix lab manual
PPTX
Easiest way to start with Shell scripting
Bash Shell Scripting
Introduction to shell scripting
Unix Shell Scripting Basics
Shell scripting
Shell Scripting
Chap06
Unix Shell Scripting Basics
Unix And Shell Scripting
Quick start bash script
Unix shell scripting
Shell Scripts
Bash shell
Shell scripting
Unix - Shell Scripts
Bash Shell Scripting
Shell scripting
COSCUP2012: How to write a bash script like the python?
Scripting and the shell in LINUX
Unix lab manual
Easiest way to start with Shell scripting
Ad

Viewers also liked (8)

ODP
Shellprogramming
PDF
Bash Beginners Guide
PPT
Purpose of command interpreter
PDF
operating system structure
PDF
SysProg-Tutor 02 Introduction to Unix Operating System
PPTX
UNIX Operating System
PPTX
Unix Operating System
PPTX
Unix operating system
Shellprogramming
Bash Beginners Guide
Purpose of command interpreter
operating system structure
SysProg-Tutor 02 Introduction to Unix Operating System
UNIX Operating System
Unix Operating System
Unix operating system
Ad

Similar to Talk Unix Shell Script (20)

PPTX
First steps in C-Shell
PPT
ShellAdvanced aaäaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
PPT
ShellAdvanced shell scripting programm.ppt
PPT
Perl Presentation
PPTX
shellScriptAlt.pptx
PPT
Unix
PPT
Shell programming
PPT
You Can Do It! Start Using Perl to Handle Your Voyager Needs
PDF
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenitĂ  (BMR G...
PDF
Module 03 Programming on Linux
PPTX
Lecture 3 Perl & FreeBSD administration
PPTX
KT on Bash Script.pptx
ODP
Introduction to Perl
PPT
Bioinformatica 29-09-2011-p1-introduction
ODP
Introduction to Perl - Day 1
PDF
Unix Tutorial
PPTX
Perl courseparti
 
PPT
Introduction to Perl
PPT
390aLecture05_12sp.ppt
PPTX
Linux Shell Scripting
First steps in C-Shell
ShellAdvanced aaäaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
ShellAdvanced shell scripting programm.ppt
Perl Presentation
shellScriptAlt.pptx
Unix
Shell programming
You Can Do It! Start Using Perl to Handle Your Voyager Needs
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenitĂ  (BMR G...
Module 03 Programming on Linux
Lecture 3 Perl & FreeBSD administration
KT on Bash Script.pptx
Introduction to Perl
Bioinformatica 29-09-2011-p1-introduction
Introduction to Perl - Day 1
Unix Tutorial
Perl courseparti
 
Introduction to Perl
390aLecture05_12sp.ppt
Linux Shell Scripting

More from Dr.Ravi (18)

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

Recently uploaded (20)

PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Modernizing your data center with Dell and AMD
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
Big Data Technologies - Introduction.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Approach and Philosophy of On baking technology
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
 
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
 
PDF
Encapsulation theory and applications.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Machine learning based COVID-19 study performance prediction
PDF
cuic standard and advanced reporting.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Modernizing your data center with Dell and AMD
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Big Data Technologies - Introduction.pptx
Unlocking AI with Model Context Protocol (MCP)
“AI and Expert System Decision Support & Business Intelligence Systems”
NewMind AI Monthly Chronicles - July 2025
Approach and Philosophy of On baking technology
CIFDAQ's Market Insight: SEC Turns Pro Crypto
 
Dropbox Q2 2025 Financial Results & Investor Presentation
Mobile App Security Testing_ A Comprehensive Guide.pdf
Chapter 3 Spatial Domain Image Processing.pdf
The AUB Centre for AI in Media Proposal.docx
 
Encapsulation theory and applications.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Network Security Unit 5.pdf for BCA BBA.
Machine learning based COVID-19 study performance prediction
cuic standard and advanced reporting.pdf
Review of recent advances in non-invasive hemoglobin estimation

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