这是我的剧本:
#!/bin/bash
if [ $# -lt 2 || $# -gt 3 ]; then # invalid number of arguments given
echo "usage: minor3 name [euid]"
else # valid number of arguments given
echo Good day, $1! Nice to meet you!
CHOICE=1
while [ "$CHOICE" -gt 0 && "$CHOICE" -lt 4 ] # print out the menu, obtain user choice, execute appropriate system call using if-else statements, loop if desired
do
echo "+*******************************************************************+
Enter one of the following options: |
1) List and count all non-hidden files in the current directory. |
2) Check if given user (default = current user) is logged in, then |
... list all active processes for that user. |
3) List the sizes and names of the 10 largest files and directories |
... in the current directory. |
4) Exit this shell program. |
+*******************************************************************+
> "
read CHOICE
if [ "$CHOICE" = 1 ]; then
# list and count all files
echo test
fi
if [ "$CHOICE" = 2 ]; then
if [ $# = 3 ]; then # euid was given
# use given user ($2)
echo given user
else
# use current user
echo current user
fi
fi
if [ "$CHOICE" = 3 ]; then
# list sizes and names of 10 largest files/directories
echo test
fi
done
echo Thanks, $1! Have a great day!
fi
这是我得到的错误:
cwd0042@cse04:~/3600/min3$ chmod +x minor3.sh
cwd0042@cse04:~/3600/min3$ ./minor3.sh
./minor3.sh: line 51: syntax error: unexpected end of file
第51行是最后一个fi
之后的行,即我程序最后一行之后的行。我发现一个早期的堆栈溢出帖子,据说使用dos2unix,但我必须测试的Linux服务器是我的学校所有,所以我没有能力安装它,使它不是一个选项。服务器使用Linux Ubuntu 12.04.5 LTS,如果这有所不同。
答案 0 :(得分:2)
您无法在&&
内使用||
和[ ... ]
test
command。
使用-a
和-o
代替或使用两个[...]
表达式:
if [ "$#" -lt 2 ] || [ "$#" -gt 3 ] ; then
另一种方式是使用内置[[ ... ]]
bash运算符。
它允许使用&&
和||
:
if [[ "$#" -lt 2 || "$#" -gt 3 ]]; then
如果您不输入,程序也会崩溃
一个数字,只需输入 Enter 即可。至少检查一下
如果$CHOICE
为空。
似乎你有CRLF行结束(dos-like), 使用例如
perl -pi -e 's/\r\n/\n/g' -- YOURSCRIPTNAME.sh
解决这个问题。这模仿dos2unix
。