Linux Shell Programming

Source: Internet
Author: User
Tags echo command

1) Unix command:

Although any Unix command can be used in shell scripts, some more common commands are used. These commands are usually used for file and text operations.

Common command syntax and functions:

Echo
"Some text": print the text on the screen.

Ls: file list.

WC
-L file WC-W file WC-C file: calculate the number of file lines. Calculate the number of words in the file. Calculate the number of characters in the file.

CP
Sourcefile destfile: copy a file.

MV
Oldname newname: Rename or move a file.

Rm
File: delete an object.

Grep
'Pattern' file: search for a string in the file, for example, grep 'searchstring' file.txt

Cut
-B colnum file: specify the content range of the file to be displayed and output them to the standard output device, for example: output 5th to 9th characters in each line cut-B 5-9 file.txt. Do not confuse it with the cat command, which is two completely different commands.

Cat
File.txt: output file content to the standard output device (screen.

File
Somefile: get the file type.

Read
VaR: prompts the user to enter the input and assigns the input value to the variable.

Sort
File.txt: sorts the rows in the file.txt file.

Uniq:
Delete the columns in a text file, such as sort.
File.txt | uniq.

Expr:
Perform mathematical operations example: Add 2 and 3
Expr 2 "+" 3.

Find:
Search for a file, for example, find.-Name by file name
Filename-print.

Tee:
Output data to the standard output device (screen) and file, for example, somecommand | tee OUTFILE.

Basename
File: returns a file name that does not contain a path. For example, basename/bin/tux returns tux.

Dirname
File: the path of the returned file, for example, dirname.
/Bin/tux will return
/Bin.

Head
File: print the first few lines of a text file.

Tail
File: the number of lines at the end of the text file.

Sed:
Sed is a basic search replacementProgram. You can read text from standard input (such as command pipeline) and output the results to standard output (screen ). This command uses a regular expression (see references) for search. Do not confuse with wildcards in shell. For example, replace linuxfocus with linuxfocus: CAT text. File | sed.
'S/linuxfocus/'> newtext. File.

Awk: awk is used to extract fields from text files. By default, the field delimiter is a space. You can use-F to specify other separators. Cat file.txt | awk-F, '{print
","} 'Is used here as the field delimiter and prints the first and third fields at the same time. If the file contains the following content: Adam Bor, 34, indiakerry Miller, 22, USA

Command output result:

Adam Bor, indiakerry Miller.

2)
Concept: pipelines, redirection, and backtick

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

MPs queue
(|) Use the output of a command as the input of another command.

Grep "hello" file.txt | WC-l

Search for a row containing "hello" in file.txt and calculate the number of rows. Here, the grep command output serves as the WC command input. Of course, you can use multiple commands.

Redirection: output the command result to a file instead of a standard output (screen ).

>
Write the file and overwrite the old one.

>
Add it to the end of the file to keep the content of the old file.

Use a backslash to output a command as a command line parameter of another command.

Command:

Find.-mtime-1-type F-print

Used to search for files modified in the past 24 hours (-mtime-2 indicates the past 48 hours. If you want to pack all the searched files, 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

"If"
If the expression is true, the part after then is executed:

If
...; Then

Certificate ------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 

Like an advanced programming language, shell also provides instructions and the ability to use variables. For shell, the values of all variables are a string. The shell program uses $ VaR to reference the value of a variable named var.

Shell has the following basic types of variables.

(1) environment variables defined by shell:

At the beginning of execution, shell has defined some variables related to the system's working environment. You can also redefine these variables. Common shell environment variables include:

Home
The full path name used to save the registration directory.

Path
Used to save the directory path names separated by colons. Shell searches for these directories in the order given in the PATH variable. The first executable file with the same name as the command will be executed.

Term
The type of the terminal.

UID
The identifier of the current user. The value is a string consisting of digits.

PWD
The absolute path name of the current working directory. The value of this variable varies with the use of the CD command.

PS1
Primary prompt. for privileged users, the default primary prompt is #. For common users, the default primary prompt is $.

PS2
When the shell receives the user's input command, if the user enters "\" at the end of the input line, then press enter, or when the shell determines that the command entered by the user is not over when the user presses the Enter key, the auxiliary prompt is displayed, prompting the user to continue entering the rest of the command. The default auxiliary prompt is>.

(2) User-Defined variables:

You can define your own variables according to the following syntax rules:

Variable name = variable value

Note that $ should not be added before the variable name when defining the variable, and $ should be added before the variable name When referencing the variable content; when assigning values to the variable, no space must be left on both sides of the equal sign. If the variable itself contains spaces, the entire string should be enclosed in double quotation marks.

When writing a shell program, we recommend that you use uppercase letters to indicate all variable names to distinguish them from command names.

Sometimes, when we want to describe a variable and set it to a specific value without changing its value, we can use the following command to ensure the read-only of a variable:

Readonly
Variable name

At any time, the created variables are only local variables of the Current Shell, so they cannot be used by other commands or Shell programs run by the shell, the Export command can provide a local variable to other commands executed by shell in the format:

Export
Variable name

You can also use the Export command when assigning values to variables:

Export
Variable name = variable value

Variables described in export can be accessed in all commands or programs run after shell.

(3) location parameters:

A location parameter is a variable that is determined by its location in the command line that calls the shell program. It is a parameter entered after the program name. Location parameters are separated by spaces. Shell replaces $1 with the first location parameter in the program file, and the second with $2, and so on. $0 is a special variable whose content is the file name of the current shell program. Therefore, $0 is not a location parameter, $0 is not included when all the current location parameters are displayed.

(4) predefined variables:

Predefine variables are similar to environment variables and are also defined at the beginning of shell. The difference is that you can only use these variables according to shell definitions, rather than redefinition. All predefined variables are composed of the $ operator and another symbol. Common shell predefined variables include:

$ #
The number of location parameters.

$ *
Content of all location parameters.

$?
Status returned after the command is executed.

$
The process ID of the current process.

$!
The last process number that runs in the background.

$0
The name of the currently executed process.

Where, $? Used to check whether the previous command is correctly executed. (In Linux, if the exit status of a command is 0, the command is correctly executed. If the value is not 0, an error occurs .)

$ The most common purpose of a variable is to use the name of the temporary file to ensure that the temporary file will not be repeated.

(5) variable for parameter replacement:

Shell provides the parameter replacement function so that you can assign different values to variables based on different conditions. There are four types of parameters for parameter substitution. These variables are usually associated with a location parameter and determine the value of the variable based on whether the specified location parameter has been set to a class, their syntax and functions are as follows.

A.
Variable =$ {parameter-word}: If a parameter is set, replace the value with the parameter value. Otherwise, replace the value with word. That is, the value of this variable is equal to the value of a parameter. If this parameter is not set, the variable is equal to the value of word.

B.
Variable =$ {parameter = word}: If a parameter is set, replace the value with the value of the parameter. Otherwise, set the variable to word and replace the value with word. Note that location parameters cannot be used in this way, because location parameters cannot be assigned values in Shell programs.

C.
Variable =$ {parameter? Word}: If a parameter is set, replace the value of the variable with the value of the parameter. Otherwise, word is displayed and exited from shell. If word is omitted, standard information is displayed. This variable must be equal to the value of a parameter. If this parameter is not set, a message is displayed and then exited. Therefore, this method is often used to indicate errors.

D.
Variable ={ {parameter + word}: If a parameter is set, replace the variable with word. Otherwise, no replace is performed.

In all the four forms, the "parameter" can be either a location parameter or another variable, but there are many situations where the location parameter is used.

ShellProcess Control for programming

Like other advanced programming languages, shell provides commands used to control program execution processes, including conditional branches and loop structures. You can use these commands to create very complex programs.

Unlike traditional languages, shell is used to specify condition values instead of Boolean operations, but commands and strings.

1. Test command

The test command is used to check whether a condition is true. It can be used to test values, characters, and files. The test characters and corresponding functions are as follows.

(1) numerical test:

-EQ
Equals to true.

-Ne
True if not equal.

-GT
If it is greater than, it is true.

-Ge
True if the value is greater than or equal.

-Lt
If it is less than, it is true.

-Le
True if the value is less than or equal.

(2) string test:

=
Equals to true.

! =
True if not equal.

The-Z string length is false.

-If the length of the N string is not pseudo, it is true.

(3) file test:

-E: the file name is true if the file exists.

-R: The file name is true if the file exists and is readable.

-W: The file name is true if the file exists and can be written.

-X: the file name is true if the file exists and can be executed.

-S file name is true if the file exists and contains at least one character.

-D. The file name is true if the file exists and is a directory.

-F: The file name is true if the file exists and is a normal file.

-C: The file name is true if the file exists and is a special character file.

-B: The file name is true if the file exists and is a special file.

In addition, Linux also provides (!) , Or (-O), non-(-a) logical operators, used to connect test conditions, the priority is :! Highest, followed by-A and-o.

Bash can also perform simple arithmetic operations in the following format:

$ [Expression]

For example:

Var1 = 2

Var2 = $[var1*10 + 1]

Then the value of var2 is 21.

2. If Condition Statement

The condition branch in the shell program is implemented through the IF Condition Statement. The general format is:

If
Conditional command string

Then

Command string when the condition is true

Else

Command string when the condition is false

Fi

3. For Loop

The for loop executes a command sequence for all possible values of a variable. The values assigned to the variable can be provided in the form of a numerical list in the program, or in the form of a positional parameter outside the program. The general format of the For Loop is:

For variable name [in Value List]

Do

Several command lines

Done

The variable name can be any string selected by the user. If the variable name is Var, the value given after in replaces $ VaR in the circular command list in sequence. If in is omitted, the value of VaR is the location parameter. Every possible value assignment to a variable will execute the command list between do and done.

4. While and until Loops

Both the while and until commands use the return status value of the command to control the loop. The general format of the while loop is:

While

Several command lines 1

Do

Several command lines 2

Done

As long 1" When the return status of the last command in is true, the while loop continues to execute "Several command lines" between do... done. 2" .

The until command is another loop structure, which is similar to the while command in the following format:

Until

Several command lines 1

Do

Several command lines 2

Done

The difference between an until loop and a while loop is that a while loop continues to run when the condition is true, while an until loop continues to run when the condition is false.

Shell also provides the "true" and "false" commands to create an infinite loop structure. Their return states are always 0 or not 0.

5. Select case conditions

The IF Condition Statement is used to select one of the two options, and the case condition selection provides you with a method to select one from multiple options based on the value of the string or variable. The format is as follows:

Case
String in

Exp-1)

Several command lines 1

;;

Exp-2)

Several command lines 2

;;

......

*)

Other command lines

Esac

By calculating the string value, shell compares the results in sequence with the formula exp-1, exp-2, etc. until a matching formula is found. If a match is found, run the following command until a semicolon (;) is encountered.

You can also use shell wildcards ("*", "?" , "[]"). * Is usually used as the final formula of the Case command to execute the "other command line" command if no matching item is found.

6. Unconditional control statements break and continue

Break is used to terminate the execution of the current loop immediately, while contiune is used to start the execution of the next loop immediately without executing the statements following the loop. These two statements are valid only when they are placed between do and done.

7. Function Definition

You can also define functions in shell. A function is actually composed of several shell commands, so it is similar to a shell program in form. The difference is that it is not a separate process, but a part of the shell program. The basic format of the function definition is:

Functionname

{

Several command lines

}

The format of the called function is:

Functionname
Param1 param2...

Shell functions can complete some routine work and have their own exit States. Therefore, functions can also be used as conditions for control structures such as if and while.

Parameters are not required for function definition, but can be included when a function is called. In this case, shell will assign these parameters to the corresponding location parameters $1, $2 ,... and $ *.

8. Command Group

There are two command grouping methods in shell: () and {}. The former creates a new sub-process when the shell executes the commands in (), and then the sub-process executes the commands in the circular arc. When a user does not want to change the status set (such as location parameters, environment variables, and current working directory) during command execution to affect the execution of the following statements, these commands should be placed in the circular arc to ensure that all changes only affect sub-processes, and the parent process is not disturbed. {} Is used to use the output results of the commands executed in sequence for the input (pipe mode) of another command ). When we really want to use circular arc and curly arc (such as computing formula priority), we need to add an escape character (\) before it (\) so that the shell knows that they are not used for command execution control.

9. Signal

The trap command is used to capture signals in Shell programs. There are three response methods:

(1) execute a program to process this signal.

(2) receive the default signal operation.

(3) Ignore this signal.

Trap provides three basic forms for the above three methods:

The first form of Trap Command will execute the command string in double quotation marks when shell receives the signal with the same value as the signal list.

Trap
'Commands' signal-list

Trap
"Commands" signal-list

To restore the default signal, use the second form of trap command:

Trap
Signal-list

The third form of the trap command allows the ignore signal:

Trap
"" Signal-list

Note:

(1) The signal 11 (segment violation) cannot be captured, because the shell itself needs to capture the signal for memory dump.

(2) In the trap, you can define the processing of the signal 0 (in fact, there is no such signal). The shell program sends this signal when it terminates (such as executing the exit Statement.

(3) After capturing the signal specified in the signal-list and executing the corresponding commands, if these commands do not terminate the shell program, the shell program will continue to execute the command after the command received when the signal is received, which will easily cause the shell program to be unable to terminate.

In TRAP statements, single quotes and double quotation marks are different. When the shell program first encounters a trap statement, it will scan the commands in commands. If commands is enclosed in single quotes, shell will not replace the variables and commands in commands. Otherwise, the variables and commands in commands will be replaced with the specific values at that time.

RunShellProgram Method

You can use any editing program to write Shell programs. Because the shell program is interpreted and executed, it does not need to be compiled into the target program. According to the shell programming Convention, for example, the first line of the program is generally "#! /Bin/bash ", where # indicates that this row is a comment and an exclamation point! Tell the shell to run the command after the exclamation mark and use the rest of the document as the input, that is, run/bin/bash and let/bin/bash execute the shell program content.

There are three methods for executing Shell programs.

1. sh shell program file name

The command format for this method is:

Bash
Shell program file name

This is actually to call a new bash command to explain the program, and pass the shell program file name as a parameter to it. The newly started shell reads the specified file and runs the commands listed in the executable file. When all the commands are executed, the execution ends. The advantage of this method is that the shell debugging function can be used.

2. Sh

Format:

Bash <
Shell program name

In this way, the shell command interpreter uses the specified program file to redirect input.

3. Run the CHMOD command to make the shell program executable.

Whether a file can run depends on whether the content of the file is executable and the file has the execution right. For Shell programs, when a file is generated using the editor, the system grants 644 (RW-r --) Permission. Therefore, when you need to run this file, you only need to directly type the file name.

Among the three methods for running Shell programs, it is best to choose the following method: when a shell program is just created and its correctness is not yet grasped, the first method should be used for debugging. When a shell program has been debugged, use the third method to fix it. Later, you only need to enter the corresponding file name and can be called by another program.

4. Bash program debugging

Errors are inevitable during programming. Sometimes, debugging takes more time than programming, as does shell.

Shell program debugging mainly uses bash commands to explain Program Selection items. Bash is called in the form:

Bash
-Select the shell program file name

Several common options are:

-E
Exit immediately if a command fails.

-N
Read commands but do not execute them.

-U
During replacement, unconfigured variables are considered as errors.

-V
Display them when reading shell input rows.

-X
Display commands and their parameters when executing commands.

All the options above can also be used inside the shell program
-Select item is referenced, and "set + select item" does not allow this option to take effect. If you only want to use some selection items for a part of the program, you can enclose this part with the preceding two statements.

(1) unset variable exit and exit now

The unset variable exit feature allows you to check all variables. If an unassigned variable is referenced, shell program execution is terminated. Shell usually allows the use of unspecified variables. In this case, the variable value is null. If you have set an unset variable to exit the selection item, once you have used the unset variable, the error message is displayed and the program is terminated. Unset variable exit select item-U.

When a shell is running, if a command does not exist or cannot be executed, the redirection fails, or the command ends abnormally, the error message is displayed on the terminal screen without redirection, the shell program continues to run. To force the shell program to end immediately when an error occurs, you can use the-e option to terminate the execution of the shell program immediately.

(2) SHELL Program tracking

The main method to debug a shell program is to use shell commands to explain the program's-V or-x options to track program execution. -V selects the item so that the shell will display every command line it reads during the execution of the program, the-x option enables shell to display every command it executes in the process of executing the program with a + + command name at the beginning of the line. And display each variable and the value of the variable. Therefore, the main difference between them is that-V is not available before the command line is executed, and the original contents of the command line are displayed, if-V exists, the replaced command line content is displayed.

In addition to shell-V and-x options, you can also take some auxiliary debugging measures within the shell program. For example, you can use the echo command to display the necessary information in some key aspects of the shell program. Its function is equivalent to the printf statement in the C language, in this way, you can know where the program runs and the current state of the program.

BashInternal commands

The bash command explains that the package contains some internal commands. Internal commands are invisible in the directory list. They are provided by the shell itself. Common internal Commands include echo, Eval, exec, export, readonly, read,
Shift, wait, and point (.). The following describes the Command Format and functions.

1. Echo

Command Format: Echo
ARG

Function: displays the string specified by Arg on the screen.

2. Eval

Command Format: eval
ARGs

Function: When the shell program runs the eval statement, the shell reads The args parameter and combines them into a new command and then runs it.

3. Exec

Command Format: exec Command Parameters

Function: When the shell executes the exec statement, it does not create a new sub-process, but instead executes the specified command. When the specified command is executed, the process (that is, the initial shell) is terminated, so the statements after exec in the shell program will not be executed.

4. Export

Command Format: Export variable name or: Export variable name = variable value

Function: shell can use export to bring its variables down to the sub-shell, so that the sub-process inherits the environment variables in the parent process. However, the sub-shell cannot use export to bring its variables up to the parent shell.

Note: The export statement without any variable name will display all the current export variables.

5. readonly

Command Format: readonly variable name

Function: identifies a user-defined shell variable as unchangeable. The readonly command without any parameters will display all read-only shell variables.

6. Read

Command Format: Read variable table

Function: Read a row from a standard input device, break it into several words, and assign values to variables defined in the shell program.

7. Shift statement

Function: The Shift statement renames all location parameter variables as follows, that is, $2 becomes $1, $3 becomes $2... Every shift statement used in the program makes all the location parameters move one position to the left in sequence, and the location parameter $ # Minus 1 until it is reduced to 0.

8. Wait

Function: enables shell to wait for all sub-processes started in the background to end. The return value of wait is always true.

9. Exit

Function: exit the shell program. After exit, you can selectively specify a digit as the return status.

10. "." (point)

Command Format :.
Shell program file name

Function: enables shell to read the specified shell program file and execute all statements in the file in sequence.

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.