Debugging Methods for Shell scripts

Source: Internet
Author: User
Debugging Methods for Shell scripts

The shell provides some options for debugging scripts, as follows:

-N

Read the command in the script but not execute it to check for syntax errors in the script

-V

Executes scripts while printing executed script commands to standard error output

-X

Provides trace execution information and prints each command and result that executes sequentially

There are three ways to use these options, one to provide parameters at the command line

$ sh-x./script.sh

The second is to provide parameters at the beginning of the script

    #! /bin/sh-x

The third method is to enable or disable parameters with the SET command in the script

    #! /bin/sh    If [-z], then      set-x      echo "Error:insufficient Args."      Exit 1      set +x    fi

The Set-x and set +x respectively indicate that the-x parameter is enabled and disabled, so that only one segment of the script can be tracked for debugging.

Debugging Methods for Shell scripts

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.