Appearance
Cheat Browser
Use bash script file to browse DevSheets better way
Features
- Fuzzy search categories
- Live preview with bat
- Fast keyboard navigation
| Tool | Purpose | Recommended |
|---|---|---|
bash | Run scripts | Usually pre-installed on Linux/macOS; Git Bash on Windows |
fzf | Fuzzy finder | Essential |
Installation dependencies
macOS
bash
# Install Homebrew if not installed
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install dependencies
brew install fzf bat
# Optional: make fzf keybindings active
$(brew --prefix)/opt/fzf/install
# Run DevSheets
./devsheets.shLinux
bash
# Update packages
sudo apt update
# Install dependencies
sudo apt install -y fzf bat git curl build-essential
# Run DevSheets
./devsheets.shWindows WSL or Git Bash
bash
# Inside WSL (Ubuntu)
sudo apt update
sudo apt install -y fzf bat git curl build-essential
./devsheets.shDownload bash script
Usage
bash
chmod +x devsheets.sh
./devsheets.shMove script to /usr/local/bin
bash
sudo mv devsheets.sh /usr/local/bin/devsheets
sudo chmod +x /usr/local/bin/devsheets
# Then just run
devsheets