我想比较用户在这个文本文件中输入的内容,以确定他们输入的内容是否在文本文件中,然后告诉他们。
file1: color_readme.txt 在这个文件中是:
red
red
orange
blue
代码:
echo Please enter a color:
cat color_readme.txt (printing the colors to screen)
read userinput (read what the user enters)
variable1 = grep $userinput (a random variable = what is found in the file according to what the user typed)
if userinput = variable1 (SAY THIS)
else (SAY THIS)
对于初学者来说,最好的方法是什么?我的老师只希望我使用基本的 ifelse 和 else 条件。