在shell脚本中调用函数,如果函数中使用了$1这样的参数

请问这个$1是调用脚本时的参数,还是调用函数时传进去的参数
2024-11-15 13:36:03
推荐回答(1个)
回答1:

是调用这个函数时,传进去的参数~~~
[root@localhost test]# bash shell.sh
haha

[root@localhost test]# cat shell.sh
#!/bin/bash
function fun {
echo $1
}
fun haha