码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本之函数的参数

时间:2016-12-10 13:54:47      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:roo   参数   root   any   this   bin   second   blog   shel   

#! /bin/bash
echo use function
hello()
{
echo how many parameters in the function:$#;
echo the name of this function is $0;
echo the first parameters is :$1;
echo the second parameters is :$2;

}
hello "hello" "world"

  

[root@lenny Desktop]# ./hello.sh 
use function
how many parameters in the function:2
the name of this function is ./hello.sh
the first parameters is :hello
the second parameters is :world

  

shell脚本之函数的参数

标签:roo   参数   root   any   this   bin   second   blog   shel   

原文地址:http://www.cnblogs.com/leonarcohen/p/6155353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!