- 论坛徽章:
- 0
|
这个应该很简单的,内容如下:
#!/bin/bash
x=20
y=5
z='expr x / y'
echo $z
所有内容如上,我希望打印出来的是:4.可是修改多次,都只能打印出来一个表达式。不知道哪位能不能给一个可以正常执行的shell,让我试试。
另外我对第一句也有点奇怪,应该说开头有#的都应该是解释语句的,可为什么#!/bin/bash就不是呢?我在网上查了一下,没找到一个说明白的。有这么一句: All shell scripts should begin with "#!/bin/bash" or whatever other shell you prefer. This line is called the shebang, and although it looks like a comment, it's not: it notifies the shell of the interpreter to be used for the script. The provided path must be an absolute one (you can't just use "bash", for example), and the shebang must be located on the first line of the script without any preceding space.
他说这个称做:shebang?为什么这么叫的,应该有点来历吧。
我总感觉这在语法上不通阿,而且不加这句似乎也可以运行的吧?
问题有点简单了,请高手不吝赐教。系统:ubuntu 9.10 |
|