Topic 2: More Shell Skills

Similar documents
Topic 2: More Shell Skills. Sub-Topic 1: Quoting. Sub-Topic 2: Shell Variables. Difference Between Single & Double Quotes

Sub-Topic 1: Quoting. Topic 2: More Shell Skills. Sub-Topic 2: Shell Variables. Referring to Shell Variables: More

Topic 2: More Shell Skills

Review of Fundamentals

Review of Fundamentals. Todd Kelley CST8207 Todd Kelley 1

Lecture 4. Log into Linux Reminder: Homework 1 due today, 4:30pm Homework 2 out, due next Tuesday Project 1 out, due next Thursday Questions?

bash, part 3 Chris GauthierDickey

Review of Fundamentals. Todd Kelley CST8207 Todd Kelley 1

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

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University

5/20/2007. Touring Essential Programs

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

Common File System Commands

Introduction: What is Unix?

Log into Linux Reminders: Homework 1 due today; Homework 2 due on Thursday Questions?

Part 1: Basic Commands/U3li3es

CST Algonquin College 2

CISC 220 fall 2011, set 1: Linux basics

Chapter 9. Shell and Kernel

CSE 303 Lecture 4. users/groups; permissions; intro to shell scripting. read Linux Pocket Guide pp , 25-27, 61-65, , 176

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

Unix Introduction to UNIX

Shell Start-up and Configuration Files

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Unix as a Platform Exercises + Solutions. Course Code: OS 01 UNXPLAT

Introduction to Bash Programming. Dr. Xiaolan Zhang Spring 2013 Dept. of Computer & Information Sciences Fordham University

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

Last Time. on the website

Linux Training. for New Users of Cluster. Georgia Advanced Computing Resource Center University of Georgia Suchitra Pakala

UNIX and Linux Essentials Student Guide

Linux shell programming for Raspberry Pi Users - 2

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

More Scripting Techniques Scripting Process Example Script

PROGRAMMAZIONE I A.A. 2015/2016

Scripting. Shell Scripts, I/O Redirection, Ownership and Permission Concepts, and Binary Numbers

bash startup files Linux/Unix files stty Todd Kelley CST8207 Todd Kelley 1

sottotitolo A.A. 2016/17 Federico Reghenzani, Alessandro Barenghi

Linux & Shell Programming 2014

Introduction to UNIX Part II

Perl and R Scripting for Biologists

EECS2301. Lab 1 Winter 2016

The Unix Shell & Shell Scripts

Introduction to Linux Workshop 1

Bash Check If Command Line Parameter Exists

Utilities. September 8, 2015

Basic Unix Command. It is used to see the manual of the various command. It helps in selecting the correct options

UNIX Shell Programming

Lab 3a Using the vi editor

A Brief Introduction to the Linux Shell for Data Science

Linux Shell Scripting. Linux System Administration COMP2018 Summer 2017

Introduction to Linux Part 2b: basic scripting. Brett Milash and Wim Cardoen CHPC User Services 18 January, 2018

The Command Line. Matthew Bender. Friday 18 th September, CMSC Command Line Workshop

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

Lab 2: Linux/Unix shell

Linux shell scripting Getting started *

Introduction to UNIX Shell Exercises

Introduction to the Shell

UNIX COMMANDS AND SHELLS. UNIX Programming 2015 Fall by Euiseong Seo

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

Essential Linux Shell Commands

Practical 4. Linux Commands: Working with Directories

Introduction to Linux Basics Part II. Georgia Advanced Computing Resource Center University of Georgia Suchitra Pakala

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

CHE3935. Lecture 1. Introduction to Linux

5/8/2012. Exploring Utilities Chapter 5

Prof. Navrati Saxena TA: R. Sachan

EECS 2031E. Software Tools Prof. Mokhtar Aboelaze

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

A shell can be used in one of two ways:

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

Understanding bash. Prof. Chris GauthierDickey COMP 2400, Fall 2008

Using LINUX a BCMB/CHEM 8190 Tutorial Updated (1/17/12)

Chapter 1 - Introduction. September 8, 2016

Open up a terminal, make sure you are in your home directory, and run the command.

Basic Linux Command Line Interface Guide

B a s h s c r i p t i n g

CS 307: UNIX PROGRAMMING ENVIRONMENT KATAS FOR EXAM 2

Introduction to Unix The Windows User perspective. Wes Frisby Kyle Horne Todd Johansen

Processes. Shell Commands. a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms:

Using UNIX. -rwxr--r-- 1 root sys Sep 5 14:15 good_program

Unix tutorial. Thanks to Michael Wood-Vasey (UPitt) and Beth Willman (Haverford) for providing Unix tutorials on which this is based.

Assignment clarifications

Basic Linux Command Line Interface Guide

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

Exploring UNIX: Session 3

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

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

Shells and Shell Programming

System Programming. Unix Shells

Std: XI CHAPTER-3 LINUX

I/O and Shell Scripting

Basics. I think that the later is better.

CENG 334 Computer Networks. Laboratory I Linux Tutorial

Bash command shell language interpreter

BASH SHELL SCRIPT 1- Introduction to Shell

Shells and Shell Programming

Environment Variables

GNU/Linux 101. Casey McLaughlin. Research Computing Center Spring Workshop Series 2018

UNIX System Programming Lecture 3: BASH Programming

Transcription:

Topic 2: More Shell Skills Sub-topics: 1 quoting 2 shell variables 3 sub-shells 4 simple shell scripts (no ifs or loops yet) 5 bash initialization files 6 I/O redirection & pipes 7 aliases 8 text file formats 1

Sub-Topic 1: Quoting Useful command: echo Prints all its arguments to the screen Normal rules: spaces separate words in commands some characters have special meanings to bash Sometimes useful to quote strings or characters. Three quoting mechanisms: 'string': every character in the string taken literally "string": most characters taken literally \c: character taken literally 2

Difference Between Single & Double Quotes A few special characters are interpreted by double quotes but not single quotes 1.!: history expansion 2. $: shell variables 3. back quotes (`) next week 3

Sub-Topic 2: Shell Variables shell variables: a way to store information in bash To give a value to a variable: today=tuesday If no "today" variables exists, creates it. Sets value to the string "Tuesday" To refer to value of variable: use $. Example: echo $today 4

Referring to Shell Variables: More Awkward situation: ------$ object=computer ------$ echo "I have two $objects" I have two ------$ Why? Fix: ------$ echo "I have two ${object}s" I have two computers 5

Shell Variables and Quotes The $ character retains its special meaning inside double quotes. echo "Today is $today" Not inside single quotes. 6

Uses of Shell Variables store information for use by programs, bash also very useful in shell scripts (soon!) To see all variables with values: set 7

Shell Variables Are Temporary Changes & new variables only last for life of current shell. To make a permanent change: use an initialization file (soon!) 8

PATH $PATH Contains list of directories separated by ":"s. When you type ls Bash looks for a command named "ls". Searching order: 1. Is it a built-in shell command? 2. In each directory in $PATH: is there a program called "ls"? 9

PS1 $PS1 is your bash prompt. Can contain literal characters plus some special ones: \d: the current date \h: the name of the host machine \j: number of jobs you have running \s: the name of the shell \u: name of user \w: current working directory \!: history number of this command 10

Useful Variables Set By bash $HOME: your home directory $PWD: current directory $SHELL: path name of current shell $USER: your user name 11

Sub-Topic 3: Sub-Shells A shell is a program. Linux automatically runs the bash program when you log on. You can run it too. One reason: experiment with settings. Command to start a sub-shell: bash Exit back to login shell: exit Use Shell variable $SHLVL to see if you're in a sub-shell A sub-shell "inherits" many of your settings, including current folder, umask Does not automatically inherit variables or aliases export command: says variable should be inherited by sub-shells export myvar 12

Sub-Topic 4: Simple Shell Scripts shell script = file containing bash commands Comments in scripts: # means rest of line is a comment Special variable names: $0: name of command $#: number of arguments $1,$2,...: the individual arguments $*: all the arguments in one string, separated by spaces 13

Executing a Shell Script First step: must be executable (chmod) Type command name alone: bash looks in your PATH directories Type command name with directory: no lookup needed 14

Putting "." in Your Path Advantage: You can run scripts & programs in your current directory without specifying the directory Disadvantages: 1. Security: Have you downloaded a malicious program called "ls"? 2. Possibility of confusion: Have you created a program with the same name as another program earlier on your path? 15

Complication: scripts & sub-shells When you type the name of a script as a command: executed in a sub-shell. Consequence: can't use to create aliases or set variables. If you want script to affect current shell: source myscript Executes commands from myscript in the current shell. 16

Special Initial Comment #!/bin/bash At beginning of script, specifies this is a script to be run with bash. Why bother? Syntax of some commands different for every shell. Now your script will work for people using other shells. Not required for 220, but generally a good idea. 17

Sub-Topic 5: Bash Initialization Files In your home directory:.bash_profile: executed when you start a login shell.bashrc: executed when you start up any other shell Use these files for your own settings (variables, etc.) Advice: before you change, make a copy! don't remove calls to standard system files Sample initialization files in /cas/course/cisc220 18

Sub-Topic 6: I/O Redirection & Pipes Three standard files associated with any command or program: file 0: standard input: default is keyboard file 1: standard output: for regular output, default is screen file 2: standard error: for error messages, default is screen I/O Redirection can change the defaults for these three files. 19

Command For Examples Command to use as example: sort. Reads standard input and sorts to standard output. demo... (use ^d to end input) 20

Redirecting Standard Input command 0< file Reads input from file, instead of keyboard. Shorter form: command < file example: sort < myfile 21

Redirecting Standard Output command 1> file Sends standard output of command to file, instead of screen. Shorter form: command > file Example: sort > file Example of redirecting standard input and output: sort < input > output 22

Output Redirection: Existing Files Bash may object if you redirect to an existing file Depends on noclobber option. To view current options: set -o To set option: set -o noclobber To turn off option: set +o noclobber command > file: if file already exists, overwrite command >> file: if file already exists, append 23

Redirecting Standard Error command 2>filename example: ls file_thats_not_here 2>errs 24

Getting Rid of Output You Don't Want send to /dev/null Example: cmd produces error messages you want to throw away: cmd 2>/dev/null 25

Redirecting Both Output Files To 2 separate files: cmd 1>goodOutput 2>errOutput or: cmd >goodoutput 2>errOutput means file 2 is sent to same place as file 1 To the same file: cmd 1>outFile 2>&1 or: cmd 2>outFile 1>&2 26

Pipes cmd1 cmd2 Sends standard output of cmd1 to standard input of cmd2 Examples: command less command sort command sort > output command 2>&1 command2 cmd1 cmd2 cmd3 27

Sub-Topic 7: Aliases Alias = easy way to create synonym for a command provides shorthand for something you do often alias ll="ls l" Also a way to turn on certain options always. Example from standard.bashrc file: alias rm="rm -i" To execute original program (without alias): quote the name "rm" file1 file2 To cancel an alias: unalias rm To see all your aliases: alias (no arguments) 28

Interesting Aliases Set For You In CASLab rm="rm i" cp="cp i" mv="mv i" ls="ls F" interactive mode asks before overwriting file asks before overwriting file adds flags at end of file names 29

Sub-Topic 8: Text File Formats Basic text file format: ASCII or Unicode characters Problem: Different OSs, different character(s) for end of line! Unix/Linux: '\n' (newline) Windows/Dos: '\r' + '\n' (carriage return + newline) Mac: sometimes '\r', sometimes '\n'! Most programs can deal with any of these formats. Others are confused by some formats. Windows: try Notepad++ and Notepad Linux: try cat and emacs 30

Historical Note 31

Useful Tools od ("octal dump"): listing of bytes in a file default or -o: each pair of bytes as an octal number -c: each byte as a character -x: each pair of bytes as a hexadecimal number -d: each pair of bytes as a decimal number wc ("word count"): number of lines, words & characters in a file 32

Conversion Programs on Linux *** may not be available on all Linux systems! *** dos2unix, unix2dos: changes arguments (make a copy first!) no effect if file already in desired format 33

Fixing With FTP Proper settings in FTP program can avoid problems will translate text files into appropriate format while transferring 34