From 0c4edde86b3a3e58fc34280543dcd7235e17e5de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Le=C3=B1ero?= Date: Fri, 20 Oct 2017 21:12:59 -0500 Subject: [PATCH] fd: add page --- pages/common/fd.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/fd.md diff --git a/pages/common/fd.md b/pages/common/fd.md new file mode 100644 index 000000000..a73e5cf5f --- /dev/null +++ b/pages/common/fd.md @@ -0,0 +1,19 @@ +# fd + +> A simple, fast and user-friendly alternative to find. + +- Find files under current dir that match foo: + +`fd foo` + +- Find files that begin with foo: + +`fd '^foo'` + +- Find files matching test with a specific extension and under a specific dir: + +`fd --extension js test ./src` + +- Find files matching config, include ignored and hidden files: + +`fd --hidden --no-ignore config`