shell脚本之函数的参数


#! /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

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM