shell/脚本函数/使用局部变量.sh

22 lines
254 B
Bash
Raw Normal View History

2016-05-15 09:51:46 +08:00
#!/bin/bash
# demonstrating the local keyword
function func1 {
local temp=$[ $value +5 ]
result=$[ $temp * 2 ]
}
temp=4
value=6
func1
echo "The result is $result"
if [ $temp -gt $value ]
then
echo "temp is larger"
else
echo "temp is smaller"
fi