Linux Shell Script Comprehensive Learning _linux Shell

Source: Internet
Author: User
Tags binary to decimal chop echo command file copy readable regular expression save file

1. Linux Scripting Basics

1.1 Basic Introduction to grammar

1.1.1 Start

The program must start with the following line (must be on the first line of the file):

#!/bin/sh

The symbolic #! is used to tell the system that the parameters behind it are the programs used to execute the file. In this example we use/BIN/SH to execute the program.

When you edit a good script, you must also make it executable if you want to execute the script.

To make the script executable:

Compile chmod +x filename so you can use./filename to run

1.1.2 Notes

In shell programming, comments are expressed in sentences that begin with # until the end of the line. We sincerely recommend that you use annotations in your programs.

If you use annotations, you can understand the role of the script in a very short period of time, even if you haven't used it for a very long time

and working principle.

1.1.3 Variable

You must use variables in other programming languages. In shell programming, all variables are composed of strings, and you do not need to

Make a declaration. To assign a value to a variable, you can write this:

#!/bin/sh

#对变量赋值:

A= "Hello World"

# now print the contents of variable a:

echo "A is:"

Echo $a

Sometimes variable names can easily be confused with other words, such as:

num=2

echo "This is the $NUMND"

This does not print out "This is the 2nd" and only prints "This is the" because the shell searches for the value of the variable NUMND.

But this variable has no value at all. You can use curly braces to tell the shell what we want to print is the NUM variable:

num=2

echo "This is the ${num}nd"

This will print: This is the 2nd

1.1.4 Environment variables

Variables processed by the EXPORT keyword are called environment variables. We do not discuss environment variables, as we typically simply log in

Use environment variables in scripts.

1.1.5 shell command and Process Control

There are three types of commands that can be used in a shell script:

1 Unix Command:

Although arbitrary UNIX commands can be used in shell scripts, there are some relatively more commonly used commands. These commands are usually used to

For file and text operations.

Common command syntax and functions

echo "Some text": Print text content on screen

LS: File list

Wc–l filewc-w filewc-c file: Calculate the number of words in a file count the number of characters in a file

CP sourcefile destfile: File copy

MV Oldname newname: Renaming a file or moving a file

RM file: Deleting files

grep ' pattern ' file: Search for strings within a file for example: grep ' searchstring ' file.txt

Cut-b colnum File: Specifies the range of files to display and outputs them to standard output devices such as: output

5th to 9th characters per line cut-b5-9 file.txt never confuse with cat commands,

This is a two totally different order.

Cat file.txt: Output file contents to standard output device (screen)

File somefile: Getting files Type

Read Var: Prompts the user for input and assigns the input to the variable

Sort file.txt: Sort the rows in a file.txt file

Uniq: Delete the rows that appear in a text file for example: sort file.txt | Uniq

Expr: Mathematical operations Example:add 2 and 3expr 2 "+" 3

Find: Search for files such as: Search for Find by filename. -name Filename-print

Tee: Output data to standard output devices (screens) and files such as: Somecommand | Tee outfile

basename file: Returns a filename that does not contain a path such as: Basename/bin/tux will return Tux

DirName file: Returns the path where the files are located for example: Dirname/bin/tux will return/bin

Head file: Print the first few lines of a text file

Tail File: Print a few lines at the end of a text file

Sed:sed is a basic search and replace program. You can read text from standard input, such as a command pipe, and

Results output to standard output (screen). The command searches using a regular expression (see Reference).

Do not confuse with wildcard characters in the shell. For example: Replace the Linuxfocus with the

Linuxfocus:cat Text.file | Sed ' s/linuxfocus/linuxfocus/' > Newtext.file

Awk:awk is used to extract fields from a text file. By default, the field separator is a space, and you can specify additional delimiters using-F.

Cat File.txt | Awk-f, ' {print $ ', ' $} ' here we use, as a field separator, while printing

First and third fields. If the contents of the file are as follows: Adam Bor, Indiakerry Miller, USA

The result of the command output is: Adam Bor, Indiakerry Miller, USA

2 Concept: Pipelines, redirects and Backtick

These are not system commands, but they are really important.

Pipe (|) The output of one command as input to another command.

grep "Hello" file.txt | Wc-l

Searches the file.txt for a row containing "Hello" and calculates its number of rows.

Here the output of the grep command is used as input to the WC command. Of course you can use more than one command.

Redirect: Outputs the results of a command to a file instead of the standard output (screen).

> Write files and overwrite old files

>> add to the end of the file and keep the old file contents.

Anti-Short Slash

Using a backslash, you can use the output of one command as a command line argument for another command.

Command:

Find. -mtime-1-type F-print

Used to find files that have been modified in the last 24 hours (-mtime–2 for the last 48 hours). If you

To make a package of all the files you find, you can use the following script:

#!/bin/sh

# The Ticks are Backticks (') not normal quotes ('):

TAR-ZCVF lastmod.tar.gz ' Find. -mtime-1-type F-print '

3) Process Control

1.if

An "if" expression executes the part following then if the condition is true:

If ...; Then

....

Elif ...; Then

....

Else

....

Fi

In most cases, you can use test commands to test conditions. For example, you can compare strings, judge files

Whether it exists and is readable, etc...

You typically use [] to represent a conditional test. Note that the spaces here are important. To ensure that the square brackets are blank.

[f "Somefile"]: To determine whether a file

[-X "/bin/ls"]: Determine if/bin/ls exists and has executable permissions

[-N ' $var]: Determine if the $var variable has a value

["$a" = "$b"]: Determine if $a and $b are equal

Execute man test to see the types that all test expressions can compare and judge.

Execute the following script directly:

#!/bin/sh

If ["$SHELL" = "/bin/bash"]; Then

echo "Your login shell is the bash (Bourne again shell)"

Else

echo "Your login shell is not bash but $SHELL"

Fi

The variable $shell contains the name of the login shell, which we compared with/bin/bash.

Shortcut operators

A friend who is familiar with C may like the following expression:

[f "/etc/shadow"] && echo "This computer uses Shadow Passwors"

Here && is a shortcut operator that executes the statement on the right if the expression on the left is true.

You can also think of it as an operation in a logical operation. The example above indicates that if the/etc/shadow file exists

Then print "This computer uses Shadow Passwors". Same OR operation (| |) Also in shell programming.

Available. Here's an example:

#!/bin/sh

Mailfolder=/var/spool/mail/james

[-R ' $mailfolder] ' {echo ' Can not read $mailfolder '; exit 1;}

echo "$mailfolder has mail from:"

grep "^from" $mailfolder

The script first determines whether the mailfolder is readable. If readable, prints the "from" line in the file. If not readable

Or the operation takes effect, the script exits after printing the error message. Here's the problem, which is that we have to have two orders:

-Print error messages

-Exit Program

We use curly braces to put two commands together as a command in the form of anonymous functions. The general functions are mentioned below.

Without the and OR operator, we can do anything with an if expression, but it is much more convenient to use the and or operators.

2.case

Case: An expression can be used to match a given string, not a number.

Case ... in

...) do something here;;

Esac

Let's look at an example. The file command can identify a given file type, such as:

File lf.gz

This will return:

Lf.gz:gzip compressed data, deflated, original filename,

Last Modified:mon Aug 23:09:18 2001, Os:unix

We use this to write a script called Smartzip, which automatically extracts bzip2, gzip, and zip-type compressed files:

#!/bin/sh

Ftype= ' file '

Case "$ftype" in

"$1:zip Archive" *)

Unzip "$";;

"$1:gzip Compressed" *)

Gunzip "$";;

"$1:bzip2 Compressed" *)

Bunzip2 "$";;

*) echo "File of Can not is uncompressed with smartzip";;

Esac

You may notice that we are using a special variable here. The variable contains the first parameter value passed to the program.

In other words, when we run:

Smartzip Articles.zip

$ is a string articles.zip

3. Selsect

A select expression is an extended application of bash and is especially good at interactive use. Users can choose from a different set of values.

Select Var in ...; Todo

Break

Done

.... Now $var can be used ....

Here is an example:

#!/bin/sh

echo "What is your favourite OS?"

Select Var in "Linux" "Gnu Hurd", "Free BSD", "other"; Todo

Break

Done

echo "You have selected $var"

The following is the result of the script running:

What is your favourite OS?

1) Linux

2) Gnu Hurd

3) Free BSD

4) Other

#? 1

You have selected Linux

4.loop

Loop expression:

While ...; Todo

....

Done

While-loop will run until the expression test is true. Would run while the expression so we test is true.

The keyword "break" is used to jump out of the loop. The keyword "Continue" is used to skip to the next loop without performing the remaining parts.

  

The For-loop expression looks at a list of strings (strings separated by spaces) and assigns them to a variable:

for Var in ...; Todo

....

Done

In the following example, ABC is printed separately on the screen:

#!/bin/sh

For Var in A B C; Todo

Echo "Var is $var"

Done

Here is a more useful script showrpm that prints some of the RPM packet statistics:

#!/bin/sh

# List A content summary of a number of RPM packages

# usage:showrpm Rpmfile1 rpmfile2 ...

# example:showrpm/cdrom/redhat/rpms/*.rpm

For Rpmpackage in $*; Todo

If [-R "$rpmpackage"];then

echo "=============== $rpmpackage =============="

Rpm-qi-p $rpmpackage

Else

echo "Error:cannot Read file $rpmpackage"

Fi

Done

Here comes the second special variable $*, which contains all the input command-line parameter values.

If you run showrpm openssh.rpm w3m.rpm webgrep.rpm

At this point the $* contains 3 strings, namely openssh.rpm, w3m.rpm and webgrep.rpm.

5. Quotes

The program expands wildcard characters and variables before passing any arguments to the program. The term "extension" here means that the program will pass the wildcard character

(for example, *) to replace the appropriate file name with a variable value. To prevent the program from making this substitution, you can use the

Quotes: Let's look at an example, assuming there are some files in the current directory, two JPG files, mail.jpg and tux.jpg.

1.2 Compiling the shell script

#ch #!/bin/sh mod +x filename

cho *.jpg∪ Slow Teman  shoot Christie Ü Chung Yuen? /filename to execute your script.

This will print out the results of the "Mail.jpg tux.jpg".

quotation marks (single and double quotes) prevent this wildcard extension:

#!/bin/sh

echo "*.jpg"

Echo ' *.jpg '

This will print "*.jpg" two times.

Single quotes are more restrictive. It can prevent any variable from being extended. Double quotes can prevent wildcard extensions but allow variable extensions.

#!/bin/sh

Echo $SHELL

echo "$SHELL"

Echo ' $SHELL '

The results of the operation are:

/bin/bash

/bin/bash

$SHELL

Finally, there is a way to prevent this extension by using the escape character--the backslash:

Echo *.jpg

Echo $SHELL

This will output:

*.jpg

$SHELL

6. Here documents

When you want to pass a few lines of text to a command, here documents: there is no translation for the word.

A good way to do it. It is useful to write a helpful text for each script, and if we have the four here documents

You do not have to use the Echo function to output line by row. A "Here document" with shift by 2

-Shift;break;; # End of options

-*) echo "error:no such option $. -h for help; exit 1;;

*) break;;

Esac

Done

echo "Opt_f is $opt _f"

echo "opt_l is $opt _l"

echo "The ' is $"

echo "2nd Arg is $"

You can run the script this way:

Cmdparser-l hello-f---somefile1 somefile2

The result returned is:

Opt_f is 1

opt_l is Hello

Is-somefile1 of the A-arg

2nd Arg is Somefile2

How does this script work? The script first loops through all the input command-line arguments, and the parameters are entered

Compares with a case expression, sets a variable if it matches, and removes the parameter. According to the practice of UNIX systems,

The first input should be an argument that contains a minus sign.

Part 2nd-Example

Now let's discuss the general steps to write a script. Any good script should have help and input parameters. and write a pseudo script (framework.sh) that contains the framework structure that most scripts require, and is a very good idea. At this point, we only need to execute the copy command when writing a new script:

CP framework.sh MyScript

And then insert your own function.

Let's look at two more examples:

Binary to decimal conversion

The script b2d converts the binary number (for example, 1101) to the corresponding decimal number. This is also an example of a mathematical operation using the expr command:

#!/bin/sh

# Vim:set sw=4 ts=4 et:

Help ()

{

Cat <

B2H-Convert binary to Decimal

USAGE:B2H [-h] Binarynum

OPTIONS:-H Help text

EXAMPLE:B2H 111010

would return 58

Help

Exit 0

}

Error ()

{

# Print an error and exit

echo "$"

Exit 1

}

Lastchar ()

{

# return ' last character ' a string in $rval

If [-Z "$"]; Then

# empty string

Rval= ""

Return

Fi

# WC puts some space behind the ' output ' is why we need sed:

Numofchar= ' Echo-n ' "$" | wc-c | Sed ' s///g '

# now cut out of the last Char

Rval= ' Echo-n ' "$" | Cut-b $numofchar '

}

Chop ()

{

# Remove the last character in string and return it in $rval

If [-Z "$"]; Then

# empty string

Rval= ""

Return

Fi

# WC puts some space behind the ' output ' is why we need sed:

Numofchar= ' Echo-n ' "$" | wc-c | Sed ' s///g '

If ["$numofchar" = "1"]; Then

# only one char in string

Rval= ""

Return

Fi

numofcharminus1= ' expr $numofchar '-"1"

# now cut all but char:

Rval= ' Echo-n ' "$" | Cut-b 0-${numofcharminus1} '

}

While [-N ' $]; Todo

Case is in

-h) Help;shift 1;; # function Help is called

-Shift;break;; # End of options

-*) Error "error:no such option $. -H for help ";;

*) break;;

Esac

Done

# The main program

Sum=0

Weight=1

# One ARG must be given:

[-Z ' $] && Help

Binnum= "$"

Binnumorig= "$"

While [-N "$binnum"]; Todo

Lastchar "$binnum"

If ["$rval" = "1"]; Then

sum= ' expr ' $weight ' "+" "$sum"

Fi

# Remove the last position in $binnum

Chop "$binnum"

Binnum= "$rval"

weight= ' expr ' $weight ' "*" 2 '

Done

echo "Binary $binnumorig is decimal $sum"

The script uses an algorithm that uses decimal and binary number weights (1,2,4,8,16,..), such as binary "10" to be converted to decimal:

0 * 1 + 1 * 2 = 2

In order to get a single binary number, we used the Lastchar function. The function calculates the number of characters using WC–C and then uses the Cut command to remove the end of a character. The function of the chop function is to remove the last character.

File Loop procedure

Maybe you are one of the people who want to save all the messages sent to a file, but in a few months

Later, the file can become so large that it slows down access to the file. The following script Rotatefile

can solve this problem. This script can rename the Mail save file (assumed to be outmail) as OUTMAIL.1,

And for the OUTMAIL.1 became OUTMAIL.2 and so on and so on ...

#!/bin/sh

# Vim:set sw=4 ts=4 et:

Ver= "0.1"

Help ()

{

Cat <

Rotatefile--Rotate the file name

Usage:rotatefile [-h] FileName

OPTIONS:-H Help text

Example:rotatefile out

This is e.g rename out.2 to Out.3, Out.1 to Out.2, out to Out.1

and create an empty out-file

The max number is 10

Version $ver

Help

Exit 0

}

Error ()

{

echo "$"

Exit 1

}

While [-N ' $]; Todo

Case is in

-h) Help;shift 1;;

-) break;;

-*) echo "error:no such option $. -h for help; exit 1;;

*) break;;

Esac

Done

# input Check:

If [-Z "$"]; Then

Error "Error:you must specify a file, use-h for help"

Fi

Filen= "$"

# Rename any. 1,. 2 etc File:

For N in 9 8 7 6 5 4 3 2 1; Todo

If [-F "$filen. $n"]; Then

p= ' expr $n + 1 '

echo "MV $filen. $n $filen. $p"

MV $filen. $n $filen. $p

Fi

Done

# Rename the original file:

If [-F "$filen"]; Then

echo "MV $filen $filen. 1"

MV $filen $filen. 1

Fi

echo Touch $filen

Touch $filen

How does this script work? After testing the user for a filename, we have a 9 to 1 loop. File 9 is named 10, file 8 is renamed 9, and so on. After the loop completes, we name the original file as file 1 and create an empty file with the same name as the original file.

Debugging

The simplest debugging command, of course, is to use the echo command. You can use Echo to print any variable values in any suspect error area. This is why most shell programmers spend 80% of their time debugging programs. The advantage of a shell program is that you don't need to recompile, and it doesn't take much time to insert an echo command.

The shell also has a real debug mode. If there are errors in the script "Strangescript", you can debug this:

Sh-x Strangescript

This executes the script and displays the values of all the variables.

The shell also has a pattern that does not need to execute a script just to check the syntax. You can use this:

Sh-n Your_script

This will return all syntax errors.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.