A simple, fast and user-friendly alternative to 'find'
Go to file
David Peter 3ee77feddc Update README.md 2017-05-09 23:45:36 +02:00
src Case insensitivity, closes #3 2017-05-09 23:40:57 +02:00
.gitignore Add initial code 2017-05-09 23:28:16 +02:00
CMakeLists.txt Add initial code 2017-05-09 23:28:16 +02:00
LICENSE Initial commit 2017-05-09 23:27:10 +02:00
README.md Update README.md 2017-05-09 23:45:36 +02:00

README.md

fnd

A modern, convenient and fast replacement for find.

Features:

  • Easy syntax. fnd PATTERN instead of find -iname '*PATTERN*'.
  • Colored output.
  • Regular expressions.
  • The command name is 25% shorter than find :-).

Examples

> fnd
src
src/fnd.cpp
README.md
LICENSE
CMakeLists.txt

> fnd cpp
src/fnd.cpp

> fnd '[A-Z].*'
README.md
LICENSE
CMakeLists.txt

Build

cmake .
make