Given a file sample:
sample
hello Hello HELLO_there
A normal grep for "hello" returns:
grep
$ grep "hello" sample hello
Using -i allows to ignore case and match any "hello":
-i
$ grep -i "hello" sample hello Hello HELLO_there