Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beauwilliams/fzf-cheat.sh
The ultimate cheat.sh wrapper leveraging fzf
https://github.com/beauwilliams/fzf-cheat.sh
bash bash-script cheatsheet cht chtsh fuzzy-finder fuzzy-search fzf
Last synced: 2 days ago
JSON representation
The ultimate cheat.sh wrapper leveraging fzf
- Host: GitHub
- URL: https://github.com/beauwilliams/fzf-cheat.sh
- Owner: beauwilliams
- Created: 2021-11-28T05:38:29.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-29T01:50:28.000Z (almost 3 years ago)
- Last Synced: 2024-08-07T18:44:27.328Z (3 months ago)
- Topics: bash, bash-script, cheatsheet, cht, chtsh, fuzzy-finder, fuzzy-search, fzf
- Language: Shell
- Homepage:
- Size: 32.2 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
Awesome Lists containing this project
README
[![GitHub stars](https://img.shields.io/github/stars/beauwilliams/fzf-cht.sh.svg?style=social&label=Star)](https://GitHub.com/beauwilliams/fzf-cht.sh/stargazers/)
[![Requires](https://img.shields.io/badge/requires-junegunn/fzf-9cf?logo=github)](https://github.com/junegunn/fzf)
[![GitHub contributors](https://img.shields.io/github/contributors/beauwilliams/fzf-cht.sh.svg)](https://GitHub.com/beauwilliams/fzf-cht.sh/graphs/contributors/)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
[![GitHub issues](https://img.shields.io/github/issues/beauwilliams/fzf-cht.sh.svg)](https://GitHub.com/beauwilliams/fzf-cht.sh/issues/)
[![GitHub issues-closed](https://img.shields.io/github/issues-closed/beauwilliams/fzf-cht.sh.svg)](https://GitHub.com/beauwilliams/fzf-cht.sh/issues?q=is%3Aissue+is%3Aclosed)# fzf-cheat.sh
๐ฅ The ultimate cheat.sh wrapper leveraging ![fzf](https://github.com/junegunn/fzf)
๐ Blazing fast and interactive fuzzy search cht.sh with a locally cached list
๐ Optionally specify a topic to query when selecting a cht.sh
๐คจ Don't beleive me? Try it for yourself!
# Demo
![demo](https://i.ibb.co/9s4yXH7/ezgif-com-gif-maker-opt.gif)
# Installation
*NOTE: Requires ![fzf](https://github.com/junegunn/fzf) installed to use fzf-cheat.sh*
**Place fzf-cheat.sh somewhere on your $PATH and make it executable**
```bash
curl https://raw.githubusercontent.com/beauwilliams/fzf-cheat.sh/master/fzf-cheat > $PATH-LOCATION-YOUR-CHOOSING/fzf-cheat
chmod +x $PATH-LOCATION-YOUR-CHOOSING/fzf-cheat
```**For example (easy method), install fzf-cheat globally for all users by placing it in /usr/local/bin**
```b
curl https://raw.githubusercontent.com/beauwilliams/fzf-cheat.sh/master/fzf-cheat > /usr/local/bin/fzf-cheat && chmod +x /usr/local/bin/fzf-cheat
```