fnd

Like GNU Find minus the GNU, and the I.

Installation

Usage

fnd is at it's core supposed to be simple. Much like the language it was written in. 90% of the time I use GNU find I just want to find a specific file or a file with a certain extension.

The most basic usage requires no flags.

bash fnd .go $GOPATH

This will find all of the .go files in your GOPATH. You can also pass multiple directories

bash fnd .md ~/Documents/ ~/projects/

This will find all markdown files in your documents and projects folders.

fnd also has multple flags which can be found using the --help option: ``` chasinglogic/fnd master Δ fnd --help NAME: fnd - Find files, folders, and text in files.

USAGE: fnd [global options] command [command options] [arguments...]

VERSION: 0.1

COMMANDS: help, h Shows a list of commands or help for one command

GLOBAL OPTIONS: --files Whether to search inside of files we find in the directory. --depth value How many directories to go down. Deafults to unlimited. (default: 0) --color value Choose the color to highlight matches with. Options: red, green, yellow, blue, magenta, cyan. (default: "magenta") --help, -h show help --version, -v print the version

chasinglogic/fnd master Δ ```

Some of these flags don't work quite yet. (read: all of them except color)

Contributing

I'll take all the help I can get! If there is some feature you would like to add just submit a Github issue as an RFC, that way I can give you some direction. I am a big fan of OpenSUSE and much like those dudes/dudettes I'm unlikely to say no.

If you see a bug you would like to fix just add a comment to the github issue and go to town!

All pull requests should go to the develop branch not master. Thanks!

License

This code is distributed under the Apache 2.0 License.

``` Copyright 2016 Mathew Robinson

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

```