当前位置: 技术问答>linux和unix
shell 不能直接运行?
来源: 互联网 发布时间:2016-07-01
本文导语: 我写了一个restart.sh 文件, #!/bin/sh echo "hello" >>/root/am.txt 然后 chmod 777 restart.sh bash restart.sh 可以运行,能在am.txt中看到信息。 restart.sh 就出现-bash: restart.sh: command not found 是哪里的问题,谢谢。 ...
我写了一个restart.sh 文件,
#!/bin/sh
echo "hello" >>/root/am.txt
然后
chmod 777 restart.sh
bash restart.sh 可以运行,能在am.txt中看到信息。
restart.sh 就出现-bash: restart.sh: command not found
是哪里的问题,谢谢。
#!/bin/sh
echo "hello" >>/root/am.txt
然后
chmod 777 restart.sh
bash restart.sh 可以运行,能在am.txt中看到信息。
restart.sh 就出现-bash: restart.sh: command not found
是哪里的问题,谢谢。
|
$ ./restart.sh