当前位置: 技术问答>linux和unix
如何执行shell程序
来源: 互联网 发布时间:2015-04-03
本文导语: 我写了一个很简单的Shell程序,内容为 echo $? 然后保存为exem,存在/root目录下 但当我在/root目录下输入exem时,确返回 bash: exem: command not found 不知道哪里出错,请各位大侠指教!! 谢谢! | 1. source...
我写了一个很简单的Shell程序,内容为
echo $?
然后保存为exem,存在/root目录下
但当我在/root目录下输入exem时,确返回
bash: exem: command not found
不知道哪里出错,请各位大侠指教!!
谢谢!
echo $?
然后保存为exem,存在/root目录下
但当我在/root目录下输入exem时,确返回
bash: exem: command not found
不知道哪里出错,请各位大侠指教!!
谢谢!
|
1. source bash.sh
2. chmod u+x bash.sh
./bash.sh
2. chmod u+x bash.sh
./bash.sh
|
PATH里没有当前路径,所以要./filename
|
就如fierygnu(va_list)所说,PATH里面没有当前路径。好像可以这样把它加进去:
(例如我这里)
[rabbit@XHP rabbit]PATH=".:$PATH"
(例如我这里)
[rabbit@XHP rabbit]PATH=".:$PATH"