shell脚本函数传参
时间: 2023-04-26 20:04:14 浏览: 315
详解shell中脚本参数传递的两种方式
Shell脚本函数传参方式与传统的编程语言中的函数传参方式类似,即在函数调用时将参数列表放在圆括号中并在函数定义中使用 $1,$2,$3等来获取参数。 例如:
```
#!/bin/bash
function test_func {
echo "The first parameter is $1"
echo "The second parameter is $2"
echo "All parameters are $@"
}
test_func "Hello" "World"
```
输出:
```
The first parameter is Hello
The second parameter is World
All parameters are Hello World
```
阅读全文