次のコードで何が間違っていますか?
while read -r -u 3 line1 && read -r -u 4 line2
do
if [ $line2 = "moon" ] #can i do this?
echo "hi"
fi
done
done 3<file1 4<file2
file1
およびfile2
スクリプトはテキスト ファイルであり、スクリプトはより大きなスクリプトの一部です。私が得ているエラーはですsyntax error near unexpected token elif [[ "$line2" = "moon" ]]
。