diff options
author | Martin Chrzanowski <martin@celo.org> | 2019-01-30 15:41:41 -0800 |
---|---|---|
committer | Martin Chrzanowski <martin@celo.org> | 2019-01-30 15:41:41 -0800 |
commit | e236a64b384f3e5c5c7064e936ccea00048ad5ea (patch) | |
tree | f20eaa65731df37f4113e3bd21bcc00e6a740d8f | |
parent | 7053c6f1beab24d27dc3f9c7445d0856ce4ab03c (diff) |
Add regex match in find
-rw-r--r-- | find.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3,3 +3,7 @@ ## Ignoring directories find . -not -ipath "dir/*" + +## Regex match + + find . -regex pattern # matches whole path |