Linux_shell_ Passing parameters

Source: Internet
Author: User

Parameters can be passed when executing a shell script:

The format of the script get parameter is: $ $ ... Where $ $ is the first argument passed and the one that is accepted is./test.sh this thing.

Code: Example:

#!/bin/"" $0"2--" $1   "3--" $2 

Operation Result:

Note: You can see that I passed two parameters 11 22 when I was running, but when I received it, it was./test.sh the true parameters are received.

There are also several special characters for handling parameters:

$ #用例:

"  the "$0"2--"$1"3-- "$2"------"$#

Operation Result:

You can see the value of the last line output 2 is the number of parameters

$* use case:

"  the "$0"2--"$1"3-- "$2"------"$*

Operation Result:

The "11 22" from which the output is seen is a single string.

[email protected] and $* usage, the difference is that the former is to separate each parameter, and the latter is to treat all parameters as a single string

Linux_shell_ passing parameters

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.