在hello.sh的程序为
#!/bin/bash
function test1
{
if [ $1 -eq "666666" ]
then
ehco "hello,everyone!"
else
echo "wrong number."
fi
}
export test1
test2
在test2.sh的程序为
#!/bin/bash
test1 666666
在执行之后第一个程序提示 test2:command not found
第二个程序提示test1:command not found
怎样才能让第二个程序共享第一程序中的函数呢? 请大家帮帮忙 谢谢!
dolphin1030 于 2009-08-10 22:07:16发表:
3# wangyu
你好!
你所说的那两种办法我都不是很懂,你可不可以详细举例说下,刚开始接触,很多都不懂。谢谢帮助!!!
bjxksy 于 2009-08-10 11:07:26发表:
了解下
wangyu 于 2009-08-10 09:21:59发表:
test2.sh需要完整路径,或者加到路径的变量里
Dobes 于 2009-08-10 00:02:58发表:
小的不才,不懂