Merge pull request #43 from naxoc/master
Add an explanation of recursive search.
This commit is contained in:
commit
08949598fa
|
|
@ -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}}`
|
||||
|
|
|
|||
Loading…
Reference in New Issue