发布网友 发布时间:2024-10-02 18:19
共5个回答
热心网友 时间:2024-10-06 20:46
无论何种语言,函数都是要()里面有时按需求要填上参数热心网友 时间:2024-10-06 20:43
在Ubuntu中使用shell脚本时,定义函数不用加 function关键字
#!/bin/sh
hello="var1"
echo $hello
func1() { #去掉function即可
local hello="var2"
echo $hello
}
func1
echo $hello
热心网友 时间:2024-10-06 20:48
#!/bin/bash热心网友 时间:2024-10-06 20:47
使用bash可以运行,且没有出现问题热心网友 时间:2024-10-06 20:43
function func1 { 改成 func1() {