teamviewer
shell调⽤其他⽂件定义的函数
⽤到的命令为source,我也是在teamviewer⾥的脚本中看到的。⽐较类似于python中import module
[root@openstack ~]# cat hello.sh
#!/bin/bash
source /root/h.sh
echo "hello world"
fname
[root@openstack ~]# cat h.sh
#!/bin/bash
fname ()
{
echo "abc"
}
#export -f fname
[root@openstack ~]# bash hello.sh
hello world
abc
另⼀种⽅式是  export -f fname 这个是在shell 脚本攻略⾥看到的。有兴趣的可以尝试⼀下。在⼦shell中调⽤函数

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。