1.11k likes | 2.52k Views
Introduction to Linux Shell Script Programming. Summer course, Institute of Bioinformatics National Yang-Ming University. Menu Today!. Part I: Shell Script in Practice Basics about Shell and Exercises of system Shell Scripts Perl Shell Script Part II: The applications of Shell Script
E N D
Introduction to Linux Shell Script Programming Summer course, Institute of Bioinformatics National Yang-Ming University
Menu Today! • Part I: Shell Script in Practice • Basics about Shell and Exercises of system Shell Scripts • Perl Shell Script • Part II: The applications of Shell Script • Massive routing jobs • Scheduling • Backup
or this? This? This? Shell !?
First glance — Linux Shell • Why Shell? • Computer only realize the command in binary form which is difficult for most of human • So OS provides a special program call ‘shell’ accepts human’s command in ‘readable’ form and translates them into 1 and 0 stream Your commands Converted binary commands Linux shell OS kernel $ ls $ man $ date 00010001010 10010110000 11100110100 BASH Linuxkernel
Kernel • Definition • It is heart of Linux OS • It manages all resources of OS • What it charges • I/O (Input and Output) • Process • Devices • File • Memory
What is Shell? • Shell is an command language interpreter that executes commands read from the standard input device (your keyboard) or from a file • In Linux OS, it may use one of the following most popular shells (BASH, CSH and KSH) • In Microsoft DOS, the name of shell is COMMAND.COM, but it is NOT as powerful as Linux shell
Operating System Shell • Shell of an operating system • it is a program that presents an interface to various operating system functions and services • Why named “shell”? • it is an outer layer of interface between the user and the innards of the OS (kernel)
Shell, an interface • Main categories • CLI (Command Line Interface) • it makes things clear • text shell (what we are going to learn now) • GUI (Graphical Use interface) • it makes things look easy • graphic shell (what people always use nowadays)
CLI • Unix shells • Bourne shell (sh) • Almquist shell (ash) • Bourne-Again shell (bash) • C shell (csh) • TENEX C shell (tcsh) • Korn shell (ksh) • Scheme shell (scsh) • Z shell (zsh) • Plan 9 and Unix • rc shell (rc) • DOS: command.com • OS/2 and windows NT: cmd.exe • DOS, OS/2 and NT • 4DOS, 4OS2, 4NT
GUI DOSSHELL • MS windows • windows explorer • litestep • Geoshell • BB4Win • Emerge Desktop • Mac OS: Machitosh Finder • X-window system (Unix) • KDE, GNOME • Blackbox, CDE • DOSSHELL MS Mac GNOME KDE
Bell Labs: The beginning • The research and development center of Lucent Technologies, formerly AT&T. • Bell labs is one of the most renowned scientific laboratories in the world Alexander Graham Bell founds the company that becomes AT&T with 2 financial backers at 1876. He is also the inventor of the telephone. His famous sentence “Mr. Watson. Come here! I want you!” were the first words to travel over a wire, ringing in the birth of electronic communication Alexander Graham Bell (1847~1922)
Bell Labs: Brief • Its official name is Bell Telephone Laboratories or Bell Labs which was originally the research and development arm of the United states Bell System, and it was also the premier corporate facility of its type, developing a range of revolutionary technologies from telephone switches to specialized coverings for telephone cables, to transistor. • The work done by Bell Labs are • Research • theoretical underpinnings for communications • it includes math, physics, material science, behavioral sciences, computer programming • System engineering • concerning itself with conceiving the highly complex systems that make up the telecommunication networks • Development • hardware and software for Bell System’s communication networks
Bell Labs: big events • 1933, discovered radio waves emitted from center of galaxy • 1947, invention of transistor (Nobel Prize in Physics in 1956) • 1948, Claude Shannon published “A Mathematical Theory of Communication” • 1954, the development of photovoltaic cell • 1957, electronic music by Max Mathews • 1970s, Unix and C language • 1971, computerized switching system for telephone traffic • 1980, the realization of the world’s first single chip 32-bit microprocessor, the BELLMAC-32A • 1980, C++ language • late 1980s and early 1990s, developed Plan9 as a replacement for Unix • 1990s, inferno OS
Variables in Linux • In the machine you are using, it has memory for storing your data. These memory are divided into smaller locations (address) and one can give them a name called memory variable or variable • There are 2 kinds of variables • System variables • created and maintained by O.S. itself, all their name are capital. • User-defined variable (UDV) • created and maintained by user, all their name are lower-case. • Check variables • set: check all variables • env: check system variables only
The shell you use now • What is your current shell? • grep username /etc/passwd • echo $SHELL • chsh (you can change the default shell here) • How many shell you can use • cat /etc/shells • How to change current shell temporarily? • just type the name of new shell
Script Components • designator line • Tell the O.S. where is the correct interpreter • it begins with #! • comments • it begins with # • shell commands • correct separator: semicolon (;) or new line (\n)
Tea Time Take a break! Review what you have learned
Your first Bash shell script: How are you doing? locate the shell you use, start with #! comments, start with # set variables (bash style) output the results
Discussion:the difference between apostrophes and quotation marks
Your 2nd Bash shell script: some arithmetic computations locate the shell you use, start with #! comments, start with # No variable declaration Declare as Integers
Declare • Syntax: declare [-afir] variable[=value] • Options: • -a: declared as array • -f: declared as function • -i: declared as integer • -r: declared as read-only variable
Logical operators arithmetic only, not for text Both arithmetic and text
Flow control • Branches • If then, else • Case • Loops (for, while, until) • it is a block of code that iterates a list of commands as long as the loop control condition is true
(1) If then, else • Syntax and example: • If [condition 1];then [statement 1] • elif [condition 2];then [statement 2] • else [statement 3] • fi Start cond 1 else then cond 2 then else stat 3 stat 2 stat 1
Simple form User enter … (stored as yn) yn=y then else STOP! script is running
Complex conditions User enter … (stored as yn) yn=y || yn=Y else then STOP! script is running
Check and Create file check properties while it exists ask user whether wanna create it while it does not exist
Remark: if then, else statements • You can link several conditions by || or && • Each condition must be between [ ] • Caution! the space between condition statement and [ or ] is necessary
Advanced Example Analyze your host ~
(2) Case • syntax and example • case variable in • value_1) [statements_1] ;; • value_2) [statements_2] ;; • value_3) [statements_3] ;; • *) [statements_for_exception] • esac
for loop • syntax: • for(( initial value; stop criteria; increment/decrement )) • do [statements] • done • simple test • The sum from 1 to 100
syntax while [ condition ] do [statement] done syntax until [ condition ] do [statements] done while loop and until loop
Compare while and until > <= while it reaches, stop while it holds, continue
for loop, revisit • alternative syntax • for variable in variable_list • do [statement] • done • it differs significantly from its C counterpart