shell--parameter passing

Source: Internet
Author: User

In the shell, arguments can be passed to a function when it is called. Inside the function body, the value of the parameter is obtained in the form of a $n, for example, "$" for the first argument, and $ for the second argument

Example:


#!/bin/bash
Funwithparam () {
echo "The first parameter is $!"
echo "The second parameter is $!"
echo "The tenth parameter is $ A!"
echo "Tenth parameter is ${10}!"
echo "11th parameter is ${11}!"
echo "The total number of parameters is $#!"
echo "Output all parameters as a string $*!"
}
Funwithparam 1 2 3 4 5 6 7 8 9 34 73

Output:

The first parameter is 1!
The second parameter is 2!
The tenth parameter is 10!
The tenth parameter is 34!
The 11th parameter is 73!
The total number of parameters is 11!
Output all parameters as a string 1 2 3 4 5 6 7 8 9 34 73!

Note: $ $ cannot get the tenth parameter, and the tenth parameter requires ${10}. When n>=10, you need to use ${n} to get the parameters.

shell--parameter passing

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.