flcl - what if UNIX find had -charset utf-8... wouldn't that be cool?
EXAMPLES
$ find .
.
./.editorconfig
./.envrc
./.envrc.sample
./.git
./.git/COMMIT_EDITMSG
./.git/config
./.git/description
./.git/HEAD
./.git/hooks
...
$ flcl .
.editorconfig
.envrc.sample
.git
.gitignore
.node-version
Makefile
README.md
cmd/flcl/main.go
drbrule.gif
editorconfig.sh
flcl.go
package.json
$ flcl -help
-charsets string
Limit results to comma-separated character sets (default "ascii,utf-8")
-help
Show usage information
-version
Show version information
DOWNLOADS
https://github.com/mcandre/flcl/releases
DOCUMENTATION
https://godoc.org/github.com/mcandre/flcl
DEVELOPMENT REQUIREMENTS
Optional
INSTALL FROM REMOTE GIT REPOSITORY
$ go get github.com/mcandre/flcl/...
(Yes, include the ellipsis as well, it's the magic Go syntax for downloading, building, and installing all components of a package, including any libraries and command line tools.)
INSTALL FROM LOCAL GIT REPOSITORY
$ mkdir -p $GOPATH/src/github.m/mcandre
$ git clone git@github.com:mcandre/go-chop.git $GOPATH/src/github.com/mcandre/go-chop
$ sh -c "cd $GOPATH/src/github.com/mcandre/go-chop/cmd/chop && go install"
$ sh -c "cd $GOPATH/src/github.com/mcandre/go-chop/cmd/chomp && go install"
TEST REMOTELY
$ go test github.com/mcandre/go-chop
TEST LOCALLY
$ go test
PORT
$ make port
LINT
Keep the code tidy:
$ make lint
GIT HOOKS
See hooks/.