Linux Shell Program Debugging

Source: Internet
Author: User

Linux Shell Program Debugging


The shell program is debugged by adding relevant debugging options when running the program or by adding related statements to the script, allowing the shell program to display some "debug information" for reference during execution. Of course, the user can also add some echo commands to the shell program for debugging and tracing in the appropriate location.

Method One: Add debugging options when you run the script:

"Usage" bash– Options ./shellscript.sh

A few common debugging options are as follows:
-e: If a command returns a non-0 exit status value (failed), exit.
-N:.
-U: The non-set variable is treated as an error when displacing.
-V: Displays the lines when they are read into the shell.
-X: Commands and their arguments are displayed when the command is executed.

set Command

set– options  set + options        #set

To be referenced inside a shell program as a set-select item, and set + Select to prevent the selection from functioning. If you only want to use certain selections on a part of a program, you can enclose that part with the two statements above.

(1) Non-variable exit (-u) and immediate exit (-e)

An unassigned variable exit attribute allows the user to check all variables and terminate the execution of the shell program if a variable that is referenced is not assigned. The shell typically allows the use of an invariant variable, in which case the value of the variable is empty. If an invariant variable is set to exit the selection, an error message is displayed once the invariant variable is used and the program is terminated. The left variable exits the Select-U.

When the shell runs, if it encounters a nonexistent or unenforceable command, a redirection failure, or an abnormal command end, the error message is displayed on the terminal screen without redirection, and the shell program continues to execute. 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 (-v or-x)

The primary way to debug a shell program is to use the-V or-x option of the shell command interpreter to track program execution. The-V selection causes the shell to display every command line it reads into while executing the program, and the-X selection causes the shell to display each command it executes during the execution of the program at the beginning of the row with a plus command name. and displays the value of each variable and the variable.

The main difference, therefore, is that without-V before the command line is executed, the original content of the command line is displayed, and a-V displays the contents of the replaced command line.


This article is from a "a little" blog, make sure to keep this source http://pengai.blog.51cto.com/6326789/1942322

Linux Shell Program Debugging

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.