- 论坛徽章:
- 0
|
题目:
Write a script named nonwords that is passed a file containing one word per line, and checks to see if each word exists.
nonwords 输出在“字典文件”没有找到的单词,一行一个.
Once again, accept input from a file or from standard input.
不区分大小写;
Extend your nowords script to include a -i option that ignores any final “s” on each word (if there is one), and then checks to see if the word exists.
我的解法:
#!/bin/bash
if [[ $1 = "-i" ]]; then #判断是否含有-i参数
while (read word )
do
l_char=$(echo $word | grep -i -o '.$') #取出最后一个字符
if [ $l_char = 's' ];then
n_word=$(echo $word | sed s/.$//) #如果是s就删除
else
n_word=$word #否则直接赋值到新的变量中
fi
if ( ! grep -iqw $n_word $3) #不区分大小的情况下比较变量和字典文件,如果不存在就输出
then
echo $n_word
fi
done < $2 #继续读取
else #如果没有-i参数,就直接进行简单步骤
while (read word)
do
if (! grep -iwq word $3)
then
echo $word
fi
done < $1
fi
我在自己电脑上中执行语句是:
./nonword check.txt dict.txt
和
./nonword -i check.txt dict.txt
执行没有问题
但是在学校的在线系统中检测会报错:
./nonwords: line 26: $1: ambiguous redirect
...Your nonwords cannot handle words from stdin
...Your nonwords cannot handle words from a file
./nonwords: line 26: $2: ambiguous redirect
...Your nonwords cannot handle the -i option
虽能告诉我怎麽改正? |
|