leonarcohen

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

  

分类:

技术点:

相关文章:

  • 2021-08-17
  • 2021-12-19
  • 2021-11-28
  • 2021-12-19
  • 2021-09-22
  • 2021-07-01
  • 2021-10-28
  • 2022-02-24
猜你喜欢
  • 2021-12-19
  • 2021-12-19
  • 2022-01-31
  • 2022-12-23
  • 2021-07-25
  • 2021-07-06
  • 2022-12-23
相关资源
相似解决方案