当前位置: 技术问答>linux和unix
如何在其它shell程序中调用此函数?
来源: 互联网 发布时间:2017-05-15
本文导语: 在fun.maink定义函数如下: #!/bin/bash hellouser() { echo -e "hello $1n" } 如何在其它shell程序中调用此函数? 比如编写he.sh如下 #!//bin/bash #如何调用hellouser? | #!/bin/sh . fun.maink hellouser
在fun.maink定义函数如下:
#!/bin/bash
hellouser()
{
echo -e "hello $1n"
}
如何在其它shell程序中调用此函数?
比如编写he.sh如下
#!//bin/bash
#如何调用hellouser?
#!/bin/bash
hellouser()
{
echo -e "hello $1n"
}
如何在其它shell程序中调用此函数?
比如编写he.sh如下
#!//bin/bash
#如何调用hellouser?
|
#!/bin/sh
. fun.maink
hellouser
. fun.maink
hellouser