diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-06-07 14:04:20 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-06-07 15:16:10 -0400 |
commit | 1bce3b33acbfcfbfa03f1174d6e00c125cd8625d (patch) | |
tree | 9cb9efd81d667b711845878310afb39183cae847 /README.md | |
parent | faee855b1e886dacc999e1dccf7f8e2c750f33c6 (diff) | |
download | bfs-1bce3b33acbfcfbfa03f1174d6e00c125cd8625d.tar.xz |
Implement -exclude, a special form for convenient exclusions
Fixes #8.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -94,9 +94,9 @@ $ <strong>bfs</strong> -L <em>haystack</em> -name 'needle' </pre> `bfs` also adds some extra options that make some common tasks easier. -Compare `bfs -nohidden` to +Compare `bfs -name config -exclude -name .git` to - find -name '.?*' -prune -o -print + find ! \( -name '.git' -prune \) -name config Try it! |