https://github.com/horacehylee/fzd
Golang file indexer and fuzzy file finder utiliy tool
https://github.com/horacehylee/fzd
Last synced: over 1 year ago
JSON representation
Golang file indexer and fuzzy file finder utiliy tool
- Host: GitHub
- URL: https://github.com/horacehylee/fzd
- Owner: horacehylee
- License: mit
- Created: 2022-02-09T16:06:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-18T17:50:31.000Z (over 4 years ago)
- Last Synced: 2025-01-24T08:43:42.889Z (over 1 year ago)
- Language: Go
- Size: 84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📂 fzd
> Golang file indexer and fuzzy file finder utiliy tool
## 🔨 Build
```
go install ./cmd/fzd
```
## 🛠Usage
Copy `.fzd.example.yaml` and place it in as `$HOME/.fzd/.fzd.yaml` in your home directory.
Tweak the configurations for your case, may take a look at [detailed configuration list](#%E2%9A%99-configuration).
```
$ fzd
Index is not created yet
Do you want to create it now [y/N]: y
Indexed for 102 files
$ fzd test
/home/test.json
/home/Projects/zzz-test
/home/Projects/zzz_test
/home/Projects/file_tests
/home/Projects/more_file_tests
$ fzd -n 3 test
/home/test.json
/home/Projects/zzz-test
/home/Projects/zzz_test
$ fzd -num 3 test
/home/test.json
/home/Projects/zzz-test
/home/Projects/zzz_test
```
## âš™ Configuration
> Coming soon
## 🚢 Release
```
go install github.com/mitchellh/gox@latest
gox -output ./build/{{.Dir}}_{{.OS}}_{{.Arch}} ./cmd/fzd
```
## 📜 License
Distributed under the MIT License. See [LICENSE](./LICENSE) for more information.