Merge pull request #43 from naxoc/master

Add an explanation of recursive search.
waldyrious/alt-syntax
Romain Prieto 2014-01-28 13:05:27 -08:00
commit 08949598fa
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@
`grep {{something}} {{file_path}}`
- search recursively in current directory for an exact string
`grep -r {{something}} .`
- use a regex
`grep -e {{^regex$}} {{file_path}}`