Cheatshh is an interactive CLI meant for managing command line cheatsheets, written in shell script. Now you don't have to remember CLI commands and just refer your cheatsheet. You can group commands and view their TLDR(or anyother) and MAN pages along with a custom description for the command.
Note: This software is tested on and initially configured for MacOS. Please check out the [configuration documentation] to set it up for your system.
- Preview/Screenshots
- Features
- Installation
- Libraries and Groups
- Bookmarking
- Dependencies
- Cheatshh Configuration
- Saving cheatshh
- Trouble-shooting
- Documentation
- Check it out
- Contributing
preview_cheatshh_2.mov
- Comprehensive cheatsheets for various command-line utilities and tools.
- Easy-to-use interface for quickly accessing and executing commands, powered by fuzzy finder(fzf) and whiptail.
- Customizable cheatsheets and groups to suit your needs.
- TLDR(any more) and MAN pages visible in the preview.
- Easy to add, edit, delete commands & groups and play around.
- Bookmark commands to access them outside of group as well.
- Change configurations like colors, automatic man page display, usages of other cheatsheets like tldr, cheats.sh, etc.
The following installation guidelines hold for Linux and MacOS.
You can download cheatshh through following ways- (more will be added soon)
Before running the below commands, make sure your dependencies are satisfied. See the DEPENDENCIES section for more info. From your command line, run-
pip install cheatshh
This will create ~/.config/cheatshh in your home directory. Now simply run-
cheatshh
and you are done. Use various options to add, edit and delete commands and groups.
This tool can also be installed using Homebrew(for MacOS only). You can install it by tapping my homebrew-tap repo and installing the tool.
brew install AnirudhG07/AnirudhG07/cheatshh
You can now run the tool by running cheatshh -h
in your terminal. If you are facing issues, try running-
brew tap AnirudhG07/AnirudhG07
brew install cheatshh
Make sure you have Homebrew installed in your MacOS and it is updated which can be done by running brew update
.
You can setup manual installation with the following guidelines-
- Clone the repository
git clone https://github.com/AnirudhG07/cheatshh
- Navigate to the project directory run below if downloaded in home directory
cd ~/cheatshh
- Install the requirements through
pip install -r requirements.txt
- (optional) Make sure you have
poetry
installed which will be required to build the project. If not you can run either of the below commands-
pip install poetry
# OR
curl -sSL https://install.python-poetry.org | python -
This will download peotry
. Now you can proceed to the next step.
- Run the below code to set cheatshh
pip install .
Now you should be able to use the tool by running cheatshh
in your terminal. Feel free to raise an issue if any error comes up.
For Windows, you can use Virtual Machines of Linux, or change configurations manually.
From version >= 1.1.1, the configurations for having
cheatshh
on Windows has greatly been improved.
-
Change the path to directory
~/.config/cheatshh
toabsolute/path/to/your/directory/cheatshh
, by using grep command in the cheatshh directory, incheatshh.toml
andcheats.sh
only at the one place. -
This should run cheatshh appropriately. Make sure the dependencies are installed, since they are easily available for Unix applications.
You can create custom groups using-
cheatshh -g
We also have premade libraries of groups here which you can download with the instructions given there itself.
We welcome you to publish your own libraries for everyone to see.
Bookmarking let's you save your command in the main preview despite them being present in a group.
You can bookmark a command by pressing Enter and selecting Bookmark
. Now you don't need to find it in a group and access it in the main preview.
You can always remove Bookmark of a command by pressing Enter and selecting Remove Bookmark
.
Cheatshh uses the following as its main tools. Ensure that these are pre-installed in your computer.
- fuzzy finder(fzf)
- whiptail
- jq
- yq
NOTE: jq and yq used in the package is the version present in Homebrew. Thus please install that instead of from Pypi.(It didn't work for me.)
In MacOS, you can use HomeBrew to install the above packages with-
brew install <package>
For MacOS & Linux both, you can run the following command to download the packages.
sudo apt install <package>
For Windows, you can use your favourite package manager or download from their website itself.
You can change various configurations of cheatshh like colors, automatic man page display, usages of other cheatsheets like tldr, cheats.sh, etc. You can do this by going to the cheatshh/cheatshh.toml
file and changing the values as per your needs.
NOTE: All the instructions on how to change suitably is mentioned within the file itself. If you are facing any issues, feel free to raise an issue.
When you have configured your cheatshh, you would definitely want to save them. If you want to use cheatshh in some different machine without rewriting again(cause that's a lot of trouble). Here's how you can save it.
- Make a repository by the name
Your_handle/cheatshh
or any other name. You can also add it to your repo where you are storing your dot files. - You can use
stow
command to configure everything in an instant. Here's the layout of the directory if you will use stow-
cheatshh
└─── .config
└── cheatshh
├── cheats.sh
├── commands.json
├── groups.json
└── any/other/file
Now you can simply download this directory, run stow cheatshh
, this will setup your cheatshh in the .config/cheatshh
as it should be.
OR you can manually set it up, in that case you don't need the above tree, you can simply use have the last level of tree inside cheatshh directory.
Don't forget to make setup.sh
executable.
- If you are facing issues with
jq
andyq
, please try the following first -
- Add ABSOLUTE PATH of your
.config/cheatshh
in thecheatshh.toml
andcheats.sh
file as pointed for Windows - The jq and yq used in the packages is from Homebrew and Pypi yq would not work. So make sure you have that
jq
andyq
installed.
- If permission denial error shows up, run the same command using sudo. You will have to provide password in this case.
sudo <command-name>
This might be needed in the case for man page display or maybe for installation of dependency.
- If
WARNING: The script cheatshh is installed in '/home/admin/.local/bin' which is not on PATH.
error comes, then cheatshh script has to be included in the system PATH, you can add the following lines to the appropriate shell configuration.
- BASH: Add the following at the end of ~/.bashrc
export PATH="$HOME/.local/bin:$PATH"
- ZSH: Add the following at the end of ~/.zshrc
export PATH="$HOME/.local/bin:$PATH"
After adding these lines, either restart your terminal or run source on the respective configuration file to apply the changes. For example:
source ~/.bashrc # For Bash
source ~/.zshrc # For Zsh
This should add the path in your shell-rc
file and you should be able to run.
Note: If you are using some other shell like fish or any similar other, configure the settings accordingly. Using Fish is not recommended for this tool.
Cheatshh is an interactive, easy CLI tool to maintain your custom cheatsheets. You can check our the docs to see how to use cheatshh.
Check out my Yazi File manager plugin for cheatshh at cheatshh.yazi. You can save your yazi shell commands and easily access them within Yazi.
I would love to take contributions from the community! If you have suggestions for new cheatsheets, improvements to existing ones, or bug fixes, please feel free to submit a pull request.
- For contribution of a library, it should have a suitable folder name(max 3 words) with commands.json and groups.json, similar to the format in other libraries. The
group
field should be "yes",bookmark
field should be "no". - For bug fixes, it will be great if you could discuss first in Issues before directly putting a PR.
- It would be great to publish this in other package managers. So I would request help for publishing to different package managers.