A simple, fast and user-friendly alternative to 'find'
Go to file
David Peter 723be8b366 Add install command 2017-05-10 09:59:02 +02:00
src Updates for older compiler/boost version 2017-05-10 09:56:25 +02:00
.gitignore Add initial code 2017-05-09 23:28:16 +02:00
CMakeLists.txt Add install command 2017-05-10 09:59:02 +02:00
LICENSE Initial commit 2017-05-09 23:27:10 +02:00
README.md Updates for older compiler/boost version 2017-05-10 09:56:25 +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.54

Build

cmake .
make