当前位置: 技术问答>linux和unix
linux下shell编程时出现command not found
来源: 互联网 发布时间:2017-02-23
本文导语: 我是linux的新手,前几天装了redhat的虚拟机,没有改动任何的配置文件,也没有装什么新的软件。今天在学shell编程的时候,执行文件总是出现command not found的错误提示。以下是课件上的代码: #!/bin/sh #print hello wor...
我是linux的新手,前几天装了redhat的虚拟机,没有改动任何的配置文件,也没有装什么新的软件。今天在学shell编程的时候,执行文件总是出现command not found的错误提示。以下是课件上的代码:
希望大家能帮个忙。
#!/bin/sh
#print hello world in the console window
a = "hello world"
echo $a
希望大家能帮个忙。
|
#!/bin/sh
#print hello world in the console window
a="hello world"
echo $a
对比下。
=两边不能有空格。否则,它会把空格当做一个命令。
当然报错找不到了。