Shell Learning 22-shell Function parameters

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 ...
Examples of functions with parameters:
#!/bin/bashfunwithparam () {echo "The value of the first parameter is $!" echo "The value of the second parameter is $!" echo "The value of the tenth parameter is $!" echo "The value of the tenth parameter is ${10}!" echo "The value of the eleventh parameter is ${11}!" echo "The amount of the parameters is $#!" # Number of parameters echo "the string of the parameters is $*!" # All parameters passed to the function}funwithparam 1 2 3 4 5 6 7 8 9 34 73
To run the script:
The value of the first parameter is 1! The value of the second parameter is 2! The value of the tenth parameter is 10! The value of the tenth parameter is 34! The value of the eleventh parameter is 73! The amount of the parameters is 12! The string of the parameters is 1 2 3 4 5 6 7 8 9 34 73! "
Note that the $ $ cannot get the tenth parameter, and the tenth parameter requires ${10}. When n>=10, you need to use ${n} to get the parameters.
In addition, there are several special variables to handle the parameters, as mentioned earlier:
Special variable Description $# The number of arguments passed to the function. $* displays all arguments passed to the function. [Email protected] is the same as $*, but slightly different, see Shell special variables. $? The return value of the function.

Shell Learning 22-shell Function parameters

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.