收到错误说shell中的文件意外结束

时间:2014-05-24 08:36:38

标签: shell

我刚刚开始研究shell。一个小脚本但遇到了问题。我在执行unexpected end of file in shell时遇到错误。

以下是代码

#!/斌/庆典     而[$ 1!="" ];做         回声$ 1         转移     别

注意:编辑复制正确的代码

#!/bin/sh -xv
while [ "$1" != "" ]
do
    echo "$1"
    shift
done 

syntax error near unexpected token完成'`

时给出错误

1 个答案:

答案 0 :(得分:1)

#!/bin/bash while [ $1 != "" ] ; do echo $1 shift done

e缺少完成,还需要报价1美元。