Comments on: 14 grep command examples in Linux https://www.linuxtechi.com/grep-command-examples-in-linux/ Sun, 11 Jun 2023 10:52:48 +0000 hourly 1 By: Saa-Aondo Wuese Mathias https://www.linuxtechi.com/grep-command-examples-in-linux/#comment-54711 Sun, 11 Jun 2023 10:52:48 +0000 http://www.linuxtechi.com/?p=3082#comment-54711 Nice material

]]>
By: SRINIVAS DARIPELLI https://www.linuxtechi.com/grep-command-examples-in-linux/#comment-271 Fri, 20 Jan 2017 00:28:33 +0000 http://www.linuxtechi.com/?p=3082#comment-271 ## cat myfile| grep –w “cook”

with the above command,we will exactly find out the searches which have “cook” word.It wont give results which has cooking.

we can add the above command also ? Nice Article

]]>
By: swathi https://www.linuxtechi.com/grep-command-examples-in-linux/#comment-270 Sat, 23 Jul 2016 21:41:09 +0000 http://www.linuxtechi.com/?p=3082#comment-270 Awesome article on grep command ..

]]>
By: Malcolm Hutchison https://www.linuxtechi.com/grep-command-examples-in-linux/#comment-269 Fri, 08 May 2015 13:51:55 +0000 http://www.linuxtechi.com/?p=3082#comment-269 “-i option … i.e it will ignore upper case or lower case letters while searching”

the “i.e ” description is not correct – it doesn’t ignore uppercase or lowercase letters (which would mean it ignores all letters) but it does not discriminate between upper and lower case lettesr, so uppercase A will match either uppercase or lowercase A.

]]>