Skip to content

Cheat Browser

Use bash script file to browse DevSheets better way

Features

  • Fuzzy search categories
  • Live preview with bat
  • Fast keyboard navigation

ToolPurposeRecommended
bashRun scriptsUsually pre-installed on Linux/macOS; Git Bash on Windows
fzfFuzzy finderEssential

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.sh

Linux

bash
# Update packages
sudo apt update

# Install dependencies
sudo apt install -y fzf bat git curl build-essential

# Run DevSheets
./devsheets.sh

Windows WSL or Git Bash

bash
# Inside WSL (Ubuntu)
sudo apt update
sudo apt install -y fzf bat git curl build-essential
./devsheets.sh

Download bash script

Download file

Usage

bash
chmod +x devsheets.sh
./devsheets.sh

Move 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