[532] in Athena Bugs
grep -i
daemon@ATHENA.MIT.EDU (qjb@ATHENA.MIT.EDU)
Tue Jul 19 13:31:07 1988
From: <qjb@ATHENA.MIT.EDU>
Date: Tue, 19 Jul 88 13:30:30 EDT
To: bugs@ATHENA.MIT.EDU
grep -i doesn't match upper-case letters in pattern to lower-case
letters in the input.
**=> soup:/mit/qjb <=**
% echo "This line contains the letter Q." | grep -i q
This line contains the letter Q.
**=> soup:/mit/qjb <=**
% echo "This line contains the letter q." | grep -i Q
Done echo This line contains the letter q. |
Exit 1 grep -i Q
Exact matches work correctly.