test.sh:
#!/bin/sh tmp="shuoeasy.com" echo $tmp function fun1 { local tmp="baidu.com" echo $tmp } fun1 echo $tmp
输出:
# 输出 [root@localhost shell]# ./test.sh shuoeasy.com baidu.com shuoeasy.com
test.sh:
#!/bin/sh tmp="shuoeasy.com" echo $tmp function fun1 { local tmp="baidu.com" echo $tmp } fun1 echo $tmp
输出:
# 输出 [root@localhost shell]# ./test.sh shuoeasy.com baidu.com shuoeasy.com