├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── ansi.go ├── app.go ├── avl_tree.go ├── avl_tree_test.go ├── cache.go ├── cache_test.go ├── command_help.go ├── command_help_test.go ├── config.go ├── dateutil.go ├── dateutil_test.go ├── design.md ├── docs ├── setup-bash.md └── setup-zsh.md ├── filetree_reader.go ├── fs_indexer.go ├── go.mod ├── go.sum ├── help.go ├── history_reader.go ├── install.sh ├── instructions.md ├── logo.png ├── main.go ├── process.go ├── shell-binding.md ├── strategies ├── aws.go ├── cargo.go ├── docker.go ├── generic.go ├── git.go ├── go.go ├── interface.go ├── kubectl.go ├── man.go ├── manager.go ├── manager_test.go ├── npm.go ├── runner.go ├── tldr.go └── utils.go ├── verify.sh └── version.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/README.md -------------------------------------------------------------------------------- /ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/ansi.go -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/app.go -------------------------------------------------------------------------------- /avl_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/avl_tree.go -------------------------------------------------------------------------------- /avl_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/avl_tree_test.go -------------------------------------------------------------------------------- /cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/cache.go -------------------------------------------------------------------------------- /cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/cache_test.go -------------------------------------------------------------------------------- /command_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/command_help.go -------------------------------------------------------------------------------- /command_help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/command_help_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/config.go -------------------------------------------------------------------------------- /dateutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/dateutil.go -------------------------------------------------------------------------------- /dateutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/dateutil_test.go -------------------------------------------------------------------------------- /design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/design.md -------------------------------------------------------------------------------- /docs/setup-bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/docs/setup-bash.md -------------------------------------------------------------------------------- /docs/setup-zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/docs/setup-zsh.md -------------------------------------------------------------------------------- /filetree_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/filetree_reader.go -------------------------------------------------------------------------------- /fs_indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/fs_indexer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/go.sum -------------------------------------------------------------------------------- /help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/help.go -------------------------------------------------------------------------------- /history_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/history_reader.go -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/install.sh -------------------------------------------------------------------------------- /instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/instructions.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/main.go -------------------------------------------------------------------------------- /process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/process.go -------------------------------------------------------------------------------- /shell-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/shell-binding.md -------------------------------------------------------------------------------- /strategies/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/aws.go -------------------------------------------------------------------------------- /strategies/cargo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/cargo.go -------------------------------------------------------------------------------- /strategies/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/docker.go -------------------------------------------------------------------------------- /strategies/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/generic.go -------------------------------------------------------------------------------- /strategies/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/git.go -------------------------------------------------------------------------------- /strategies/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/go.go -------------------------------------------------------------------------------- /strategies/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/interface.go -------------------------------------------------------------------------------- /strategies/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/kubectl.go -------------------------------------------------------------------------------- /strategies/man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/man.go -------------------------------------------------------------------------------- /strategies/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/manager.go -------------------------------------------------------------------------------- /strategies/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/manager_test.go -------------------------------------------------------------------------------- /strategies/npm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/npm.go -------------------------------------------------------------------------------- /strategies/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/runner.go -------------------------------------------------------------------------------- /strategies/tldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/tldr.go -------------------------------------------------------------------------------- /strategies/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/strategies/utils.go -------------------------------------------------------------------------------- /verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/verify.sh -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybrota/recaller/HEAD/version.go --------------------------------------------------------------------------------