ユーザーがこのテキストファイルに入力した内容を比較して、入力した内容がテキストファイルにあるかどうかを判断し、ユーザーに伝えたいと思います。
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の基本的な条件を使用することだけを望んでいます。