Changes between Version 2 and Version 3 of NavigatingInSources
- Timestamp:
- 2018-02-24T20:35:39Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NavigatingInSources
v2 v3 3 3 == Searching and Grepping == 4 4 5 Most people coming from the Unix background will be used to working with the `grep` command. While using plain `grep` to search HelenOS sources is possible too, Bazaar, the VCS used by HelenOS, provides a nice wrapper around `grep`, so that it is possible to do for example:5 Most people coming from the Unix background will be used to working with the `grep` command. While using plain `grep` to search HelenOS sources is possible too, Git, the VCS used by HelenOS, provides a nice wrapper around `grep`, so that it is possible to do for example: 6 6 7 7 {{{ 8 $ bzr grep -n --color=autofoo8 $ git grep -n foo 9 9 }}} 10 10