1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 05:55:24 +02:00

grep: add -i option

This commit is contained in:
Ahmet Kun 2016-01-28 00:12:10 +02:00
parent c79272a73c
commit 798ea018a0

View file

@ -7,6 +7,10 @@
`grep {{something}} {{file_path}}`
- Search without case-sensitivity:
`grep -i {{something}} {{file_path}}`
- Search recursively in current directory for an exact string:
`grep -r {{something}} .`