UNIX Shell Scripts. What Is a Shell? The Bourne Shell. Executable Files. Executable Files: Example. Executable Files (cont.) CSE 2031 Fall 2012

Similar documents
Writing Shell Scripts part 1

UNIX shell scripting

Shell Control Structures

Shell Control Structures

Assignment clarifications

Bourne Shell Reference

CSCI 211 UNIX Lab. Shell Programming. Dr. Jiang Li. Jiang Li, Ph.D. Department of Computer Science

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs

Command Interpreters. command-line (e.g. Unix shell) On Unix/Linux, bash has become defacto standard shell.

Shells and Shell Programming

28-Nov CSCI 2132 Software Development Lecture 33: Shell Scripting. 26 Shell Scripting. Faculty of Computer Science, Dalhousie University

Vi & Shell Scripting

Shells & Shell Programming (Part B)

Shells and Shell Programming

Shell Programming (bash)

There are some string operators that can be used in the test statement to perform string comparison.

Conditional Control Structures. Dr.T.Logeswari

example: name1=jan name2=mike export name1 In this example, name1 is an environmental variable while name2 is a local variable.

Linux shell programming for Raspberry Pi Users - 2

CSCI 2132: Software Development. Norbert Zeh. Faculty of Computer Science Dalhousie University. Shell Scripting. Winter 2019

Introduction to UNIX. Introduction. Processes. ps command. The File System. Directory Structure. UNIX is an operating system (OS).

Introduction to UNIX. CSE 2031 Fall November 5, 2012

Last Time. on the website

Shell programming. Introduction to Operating Systems

Linux Shell Scripting. Linux System Administration COMP2018 Summer 2017

Basic Linux (Bash) Commands

Advanced Unix Programming Module 03 Raju Alluri spurthi.com

12.1 UNDERSTANDING UNIX SHELL PROGRAMMING LANGUAGE: AN INTRODUCTION Writing a Simple Script Executing a Script

Shell Script Example. Here is a hello world shell script: $ ls -l -rwxr-xr-x 1 horner 48 Feb 19 11:50 hello* $ cat hello #!/bin/sh

A shell can be used in one of two ways:

Shell. SSE2034: System Software Experiment 3, Fall 2018, Jinkyu Jeong

COMP 4/6262: Programming UNIX

LING 408/508: Computational Techniques for Linguists. Lecture 5

Useful Unix Commands Cheat Sheet

bash Execution Control COMP2101 Winter 2019

Bourne Shell Programming Topics Covered

Lecture 02 The Shell and Shell Scripting

CHAPTER 3 SHELL PROGRAMS: SCRIPTS

Shells. A shell is a command line interpreter that is the interface between the user and the OS. The shell:

EECS2301. Example. Testing 3/22/2017. Linux/Unix Part 3. for SCRIPT in /path/to/scripts/dir/* do if [ -f $SCRIPT -a -x $SCRIPT ] then $SCRIPT fi done

5/20/2007. Touring Essential Programs

I/O and Shell Scripting

Cisco IOS Shell. Finding Feature Information. Prerequisites for Cisco IOS.sh. Last Updated: December 14, 2012

CS Unix Tools & Scripting

Unix Scripts and Job Scheduling. Overview. Running a Shell Script

System Programming. Unix Shells

3/8/2017. Unix/Linux Introduction. In this part, we introduce. What does an OS do? Examples

UNIX System Programming Lecture 3: BASH Programming

Computer Systems and Architecture

Unix Guide. Meher Krishna Patel. Created on : Octorber, 2017 Last updated : December, More documents are freely available at PythonDSP

INd_rasN SOME SHELL SCRIPTING PROGRAMS. 1. Write a shell script to check whether the name passed as first argument is the name of a file or directory.

OPERATING SYSTEMS LAB LAB # 6. I/O Redirection and Shell Programming. Shell Programming( I/O Redirection and if-else Statement)

LOG ON TO LINUX AND LOG OFF

CSC 2500: Unix Lab Fall 2016

CS 25200: Systems Programming. Lecture 10: Shell Scripting in Bash

Introduction: What is Unix?

Shell script. Shell Scripts. A shell script contains a sequence of commands in a text file. Shell is an command language interpreter.

Introduction to UNIX Shell Exercises

Shell Scripting. With Applications to HPC. Edmund Sumbar Copyright 2007 University of Alberta. All rights reserved

Grep and Shell Programming

Welcome to Linux. Lecture 1.1

Lab 4: Shell scripting

Bashed One Too Many Times. Features of the Bash Shell St. Louis Unix Users Group Jeff Muse, Jan 14, 2009

Computer Systems and Architecture

Програмиранев UNIX среда

bash Tests and Looping Administrative Shell Scripting COMP2101 Fall 2017

EECS 2031E. Software Tools Prof. Mokhtar Aboelaze

Bash Programming. Student Workbook

Linux Bash Shell Scripting

Essentials for Scientific Computing: Bash Shell Scripting Day 3

bash Args, Signals, Functions Administrative Shell Scripting COMP2101 Fall 2017

9.2 Linux Essentials Exam Objectives

bash Tests and Looping Administrative Shell Scripting COMP2101 Fall 2017

Lezione 8. Shell command language Introduction. Sommario. Bioinformatica. Mauro Ceccanti e Alberto Paoluzzi

Mills HPC Tutorial Series. Linux Basics II

1. What statistic did the wc -l command show? (do man wc to get the answer) A. The number of bytes B. The number of lines C. The number of words

Preview. Review. The test, or [, command. Conditions. The test, or [, command (String Comparison) The test, or [, command (String Comparison) 2/5/2019

5/8/2012. Specifying Instructions to the Shell Chapter 8

S E C T I O N O V E R V I E W

Windshield. Language Reference Manual. Columbia University COMS W4115 Programming Languages and Translators Spring Prof. Stephen A.

1. Hello World Bash Shell Script. Last Updated on Wednesday, 13 April :03

bash, part 3 Chris GauthierDickey

EECS2301. Special variables. $* and 3/14/2017. Linux/Unix part 2

Lezione 8. Shell command language Introduction. Sommario. Bioinformatica. Esercitazione Introduzione al linguaggio di shell

EECS2301. Lab 1 Winter 2016

Exploring UNIX: Session 3

The Unix Shell & Shell Scripts

22-Sep CSCI 2132 Software Development Lecture 8: Shells, Processes, and Job Control. Faculty of Computer Science, Dalhousie University

UNIX Bourne Shell Programming

Table of Contents. 1. Introduction. 2. Environment. 3. Shell Scripting Shell Scripting Introduction

Name: Tej. D. Shah Subject:CC-304 Linux Uni. Practical programme College :L.J. College Of Computer Application. Questions:

Shell Scripting. Todd Kelley CST8207 Todd Kelley 1

Implementation of a simple shell, xssh

Shell Programming. Introduction to Linux. Peter Ruprecht Research CU Boulder

EECS 470 Lab 5. Linux Shell Scripting. Friday, 1 st February, 2018

Bash scripting basics

Practice 5 Batch & Shell Programming

A Big Step. Shell Scripts, I/O Redirection, Ownership and Permission Concepts, and Binary Numbers

Introduction to the Shell

Self-test Linux/UNIX fundamentals

Transcription:

What Is a Shell? UNIX Shell Scripts CSE 2031 Fall 2012 A program that interprets your requests to run other programs Most common Unix shells: Bourne shell (sh) C shell (csh - tcsh) Korn shell (ksh) Bourne-again shell (bash) In this course we focus on Bourne shell (sh). November 15, 2012 1 2 The Bourne Shell A high level programming language Processes groups of commands stored in les called scripts Includes variables control structures processes signals Executable Files Contain one or more shell commands. These les can be made executable. # indicates a comment Except on line 1 when followed by an! % cat welcome echo Hello World! 3 4 Executable Files: Example % cat welcome echo Hello World! % welcome welcome: execute permission denied % chmod 755 welcome % ls -l welcome -rwxr-xr-x 1 bil faculty 30 Nov 12 10:49 welcome % welcome Hello World! % welcome > greet_them % cat greet_them Hello World! Executable Files (cont.) If the le is not executable, use sh followed by the le name to run the script. Example: % chmod 644 welcome % ls -l welcome -rw-r--r-- 1 bil faculty 30 Nov 12 10:49 welcome % sh welcome Hello World! 5 1

Processes Processes: Explanation Consider the welcome program. Every program is a child of some other program. Shell res up a child shell to execute script. Child shell res up a new (grand)child process for each command. Shell (parent) sleeps while child executes. Every process (executing a program) has a unique PID. Parent es not sleep while running background processes. 7 8 Process-Related Variables Process Exit Status Variable $$ is PID of the shell. % cat shpid ps echo PID of shell is = $$ % shpid PID TTY TIME CMD 5658 pts/75 00:00:00 shpid 5659 pts/75 00:00:00 ps 11231 pts/75 00:00:00 tcsh PID of shell is = 5658 9 All processes return exit status (return code). Exit status tells us whether the last command was successful or not. Stored in variable $? 0 (zero) means command executed successfully. 0 is good; non-zero is bad. Good practice: Specify your own exit status in a shell script using exit command. default value is 0 (if no exit code is given). 10 Process Exit Status: Example Redirection tricks A more talkative grep. % cat igrep # Arg 1: search pattern # Arg 2: le to search # grep $1 $2 if test $? -ne 0 echo Pattern not found. % igrep echo phone echo n Enter name: % igrep echo2 chex Pattern not found. Want to run a command to check its exit status and ignore the output? diff f1 f2 > /dev/null Want to combine standard error and standard output? diff f1 f2 > /dev/null 2>&1 11 12 2

Variables: Three Types Standard UNIX variables Consist of shell variables and environment variables. Used to tailor the operating environment to suit your needs. Examples: TERM, HOME, PATH To display your environment variables, type set. User variables: variables you create yourself. Positional parameters Also called read-only variables, automatic variables. Store the values of command-line arguments. 13 User Variables Syntax: name=value No space around the equal sign! All shell variables store strings (no numeric values). Variable name: combinations of letters, numbers, and underscore character ( _ ) that not start with a number. Avoid existing commands and environment variables. Shell stores and remembers these variables and supplies value on demand. 14 User Variables To use a variable: $varname Operator $ tells the shell to substitute the value of the variable name. % cat ma dir=/usr/include/ echo $dir echo dir ls $dir grep 'ma 15 echo and variables What if I want to display the following? $dir Two ways to prevent variable substitution: echo $dir echo \$dir Note: echo $dir es the same as echo $dir 16 User Variables and Quotes If value contains no space, no need to use quotes: dir=/usr/include/ Unless you want to protect the literal $ % cat quotes # Test values with quotes myvar1=$100 myvar2='$100' echo The price is $myvar1 echo The price is $myvar2 17 User Variables and Quotes If value contains one or more spaces: Use single quotes for NO interpretation of metacharacters (protect the literal) Use uble quotes for interpretation of metacharacters 18 3

Example % cat quotes2 myvar=`whoami` squotes='today is `date`, $myvar.' dquotes="today is `date`, $myvar." echo $squotes echo $dquotes Example % cat twodirs # The following needs quotes dirs="/usr/include/ /usr/local/" echo $dirs ls -l $dirs 19 20 Command Line Arguments Command line arguments stored in variables are called positional parameters. These parameters are named $1 through $9. Command itself is in parameter $0. In diagram format: Example 1 % cat showargs echo First four arguments from the echo command line are: $1 $2 $3 $4 % showargs William Mary Richard James First four arguments from the command line are: William Mary Richard James command arg1 arg2 arg3 arg4 arg5 arg6 arg7 arg8 arg9 $0 $1 $2 $3 $4 $5 $6 $7 $8 $9 21 22 Example 2 % cat chex # Make a le executable chmod u+x $1 echo $1 is now executable: ls l $1 % sh chex chex chex is now executable: -rwx------ 1 bil faculty 86 Nov 12 11:34 chex % chex showargs showargs is now executable: -rwx------ 1 bil faculty 106 Nov 2 14:26 showargs Command Line Arguments $# represents the number of command line arguments $* represents all the command line arguments $@ represents all the command line arguments % cat check_args echo There are $# arguments. echo All the arguments are: $* # or echo All the arguments are: $@ % check_args Mary Tom Amy Tony There are 4 arguments. All the arguments are: Mary Tom Amy Tony 23 24 4

Command Line Arguments $* versus $@ Example $# es NOT include the program name (unlike argc in C programs) $* and $@ are identical when not quoted: expand into the arguments; blanks in arguments result in multiple arguments. They are different when uble-quoted: $@ each argument is quoted as a separate string. $* all arguments are quoted as a single string. % cat displayargs echo All the arguments are "$@". countargs "$@" echo All the arguments are "$*". countargs "$*" % cat countargs echo Number of arguments to countargs = $# % displayargs Mary Amy Tony 25 26 Control Structures if else for while case (which) until if Statement and test Command Syntax: if condition command(s) elif condition_2 command(s) else command(s) Command test is often used in condition. 27 28 if else Example test Command % cat if_else echo -n 'Enter string 1: ' read string1 echo -n 'Enter string 2: ' read string2 if test $string1 = $string2 echo 'They match!' else echo 'No match!' % if_else Enter string 1: acd Enter string 2: 123 No match! % if_else Enter string 1: 123 Enter string 2: 123 They match! 29 -e arg True if arg exists -d arg True if arg is a directory -f arg True if arg is an ordinary le -r arg True if arg is readable -w arg True if arg is writable -x arg True if arg is executable -s arg True if size of arg is greater than 0! d arg True if arg is not a directory 30 5

test Command (Numeric tests) n1 eq n2 n1 == n2 n1 ge n2 n1 >= n2 n1 gt n2 n1 > n2 n1 le n2 n1 <= n2 n1 ne n2 n1!= n2 n1 lt n2 n1 < n2 Parentheses can be used to group conditions. test Example 1 % cat check_le if test! -e $1 echo "$1 es not exist." exit 1 else ls -l $1 31 32 test Example 2 % cat check_le2 if test $# -eq 0 echo Usage: check_le le_name exit 1 33 test Example 3 What is wrong with the following script? % cat chkex2 # Check if a le is executable. if test -x $1 echo File $1 is executable. else echo File $1 is not executable. 34 test and Logical Operators for Loops!, and && as in C Following is better version of test Example 3 %cat chkex if test -e $1 && test -x $1 echo File $1 is executable. elif test! -e $1 echo File $1 es not exist. else echo File $1 is not executable. 35 for variable in list command(s) variable is a user-dened variable. list is a sequence of strings separated by spaces. 36 6

for Loop Example 1 % cat ngr for name in $* nger $name for Loop Example 2 % cat fsize for i in $* echo "File $i: `wc -c $i cut -f1 -d" "` bytes Recall that $* stands for all command line arguments the user enters. 37 38 for Loop Example 3 for Loop Example 4 % cat makeallex # Make all les in the working directory # executable. for i in * chmod a+x $i ls -l $i % cat prdir # Display all c les in a directory # specied by argument 1. # for i in $1/*.c echo "======= $i ======" more $i 40 Arithmetic Operations Using expr The shell is not intended for numerical work (use Java, C, or Perl instead). However, expr utility may be used for simple arithmetic operations on integers. expr is not a shell command but rather a UNIX utility. To use expr in a shell script, enclose the expression with backquotes. Example: sum=`expr $1 + $2` echo $sum Note: spaces are required around the operator + (but not allowed around the equal sign). 41 expr Example % cat cntx # Count the number of executable les in # the current working directory count=0 for i in * if test -x $i count=`expr $count + 1` ls -l $i echo There are $count executable les. 42 7

while Loops while condition command(s) Command test is often used in condition. Execute command(s)when condition is met. while Loop Example # Display the command line arguments, one per line. count=1 argc=$# while test $count -le $argc echo "Argument $count is: $1" count=`expr $count + 1` # arg 2 into arg 1 position 43 # What happens if the while statement is as follows? # while test $count -le $# 44 until Loops until Loop Example until condition command(s) Command test is often used in condition. Exit loop when condition is met. 45 % cat grocery # Enter a grocery list and # store in a le indicated by $1 # echo To end list, enter \"all\". item=nothing until test $item = all echo -n "Enter grocery item: " read item echo $item >> $1 46 until Loop Example Output break and continue % grocery glist To end list, enter "all". Enter grocery item: milk Enter grocery item: eggs Enter grocery item: lettuce Enter grocery item: all % cat glist milk eggs lettuce all Interrupt loops (for, while, until) break transfers control immediately to the statement after the nearest statement terminates execution of the current loop continue transfers control immediately to the nearest statement brings execution back to the top of the loop Same effects as in C. 47 48 8

break and continue Example Shell Functions while true echo Entering while loop... echo Choose 1 to exit loop. echo Choose 2 to go to top of loop. echo -n Enter choice: read choice if test $choice = 1 break echo Bypassing break. if test $choice = 2 continue echo Bypassing continue. echo Exit while loop. Similar to shell scripts. Stored in shell where it is dened (instead of in a le). Executed within sh no child process spawned Syntax: function_name() { commands } Allows structured shell scripts 49 50 Example # Function to log users log() { echo -n "Users logged on: " >> $1 date >> $1 who >> $1 } # Beginning of main script log log1 log log2 Shell Functions (2) Make sure a function es not call itself causing an endless loop. % cat makeit sort() { sort $* more } Should be written: % cat makeit sort() { /bin/sort $* more } 51 52 Reading User Input Reads from standard input. Stores what is read in user variable. Waits for the user to enter something followed by <RETURN>. Syntax: read varname # no llar sign $ To use the input: echo $varname Example 1 % cat greeting echo n Enter your name: read name echo Hello, $name. How are you today? % greeting Enter your name: Jane Hello, Jane. How are you today? 53 54 9

Example 2 % cat it echo n Enter a command: read command $command echo I m. Thanks % it Enter a command: ls lab* lab1.c lab2.c lab3.c lab4.c lab5.c lab6.c I m. Thanks Reading User Input (2) More than one variable may be specied. Each word will be stored in separate variable. If not enough variables for words, the last variable stores the rest of the line. % it Enter a command: who lan pts/200 Sep 1 16:23 (indigo.cs.yorku.ca) jeff pts/201 Sep 1 09:31 (navy.cs.yorku.ca) anton pts/202 Sep 1 10:01 (red.cs.yorku.ca) I m. Thanks 55 56 Example 3 % cat read3 echo Enter some strings: read string1 string2 string3 echo string1 is: $string1 echo string2 is: $string2 echo string3 is: $string3 % read3 Enter some strings: This is a line of words string1 is: This string2 is: is string3 is: a line of words case Statement case variable in pattern1) command(s);; pattern2) command(s);;... patternn) command(s);; *) command(s);; # all other cases esac Why the uble semicolons? 57 58 case Statement Example # Course schedule echo -n "Enter the day (mon, tue, wed, thu, fri): " read day case $day in mon) echo 'CSE2031 2:30-4:30 CLH-H' echo 'CSE2021 17:30-19:00 TEL-0016';; tue thu) echo 'CSE2011 17:30-19:00 SLH-E';; wed) echo 'No class today. Hooray!';; fri) echo 'CSE2031 2:30-4:30 LAB 1006';; *) echo 'Day off. Hooray!';; esac 59 Shifting arguments What if the number of arguments is more than 9? How to access the 10 th, 11 th, etc.? Use operator. 60 10

Operator promotes each argument one position to the left. Allows access to arguments beyond $9. Operates as a conveyor belt. Shifts contents of $2 into $1 Shifts contents of $3 into $2 Shifts contents of $4 into $3 etc. Eliminates argument that used to be in $1 After a, the argument count stored in $# is automatically decreased by one. 61 Example 1 % cat ex echo "arg1 = $1, arg8 = $8, arg9 = $9, ARGC = $#" myvar=$1 # save the rst argument echo "arg1 = $1, arg8 = $8, arg9 = $9, ARGC = $#" echo "myvar = $myvar % ex 1 2 3 4 5 6 7 8 9 10 11 12 arg1 = 1, arg8 = 8, arg9 = 9, ARGC = 11 arg1 = 2, arg8 = 9, arg9 = 10, ARGC = 10 myvar = 1 62 Example 2 Example 3 % cat show_ echo arg1=$1, arg2=$2, arg3=$3 echo arg1=$1, arg2=$2, arg3=$3 echo arg1=$1, arg2=$2, arg3=$3 % show_ William Richard Elizabeth arg1=william, arg2=richard, arg3=elizabeth arg1=richard, arg2=elizabeth, arg3= arg1=elizabeth, arg2=, arg3= % my_copy dir_name lename1 lename2 lename3 # This shell script copies all the les to directory dir_name % cat my_copy # Script allows user to specify, as the 1 st argument, # the directory where the les are to be copied. location=$1 les=$* cp $les $location 63 64 Shifting Multiple Times Shifting arguments three positions: 3 ways to write it ; ; 3 Changing Values of Positional Parameters Positional parameters $1, $2, normally store command line arguments. Their values can be changed using the set command set newarg1 newarg2 65 66 11

Example Environment and Shell Variables % cat setparm echo "Hello, $1. You entered $# command line argument(s). Today's date is..." date set `date` echo There are now $# positional parameters. The new parameters are... echo \$1 = $1, \$2 = $2, \$3 = $3, \$4 = $4, \$5 = $5, \$6 = $6. % setparm Amy Tony Hello, Amy. You entered 2 command line argument(s). Today's date is... Sat Nov 27 11:55:52 EST 2010 There are now 6 positional parameters. The new parameters are... $1 = Sat, $2 = Nov, $3 = 27, $4 = 11:55:52, $5 = EST, $6 = 2010. Standard UNIX variables are divided into 2 categories: shell variables and environment variables. Shell variables: apply only to the current instance of the shell; used to set short-term working conditions. displayed using set command. Environment variables: set at login and are valid for the duration of the session. displayed using env command. By convention, environment variables have UPPER CASE and shell variables have lower case names. 67 68 Environment and Shell Variables (2) In general, environment and shell variables that have the same name (apart from the case) are distinct and independent, except for possibly having the same initial values. Exceptions: When home, user and term are changed, HOME, USER and TERM receive the same values. But changing HOME, USER or TERM es not affect home, user or term. Changing PATH causes path to be changed and vice versa. 69 Variable path PATH and path specify directories to search for commands and programs. cd # current dir is home dir funcex # this fails because funcex # is in www/2031/lecture9 set path=($path www/2031/lecture9) funcex # successful To add a path permanently, add the line to your.cshrc le after the list of other commands. set path=($path.) 70 Readings Sections 3.6 to 3.8, UNIX textbook Chapter 5, UNIX textbook Posted tutorial on standard UNIX variables Posted Bourne shell tutorial Most importantly, play with the scripts we discussed in class 71 12