Merge pull request #732 from keune/add-grep-i

grep: add -i option
waldyrious/alt-syntax
Felix Yan 2016-01-28 11:15:30 +08:00
commit 6919f3e9ee
1 changed files with 4 additions and 0 deletions

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}} .`