A simple, fast and user-friendly alternative to 'find'
Go to file
David Peter 04892d2290 Require boost 1.60 2017-05-10 10:09:29 +02:00
src Require boost 1.60 2017-05-10 10:09:29 +02:00
.gitignore Add initial code 2017-05-09 23:28:16 +02:00
CMakeLists.txt Require boost 1.60 2017-05-10 10:09:29 +02:00
LICENSE Initial commit 2017-05-09 23:27:10 +02:00
README.md Require boost 1.60 2017-05-10 10:09:29 +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

Dependencies

  • g++ >=4.9
  • boost >=1.60

Build

cmake .
make