Skip to content

DevSheets



image



DevSheets CLI

DevSheets is a lightweight command-line tool that provides offline developer cheatsheets directly in your terminal.

No internet connection required.
Just download the binary and start using it.

Features

  • Fast terminal access to developer cheatsheets
  • Fully offline (cheatsheets embedded in the binary)
  • Simple command syntax
  • Cross-platform (Linux, macOS, Windows)

Installation

DevSheets CLI v1.0.0 Latest

1. Download the Binary for your OS

Download Linux

Download macOS

Download Windows


2. Install (Linux / macOS)

Make the binary executable:

bash
chmod +x devsheets-linux

# Move it to a directory in your PATH:
sudo mv devsheets-linux /usr/local/bin/devsheets 

sudo chmod +x /usr/local/bin/devsheets

# Verify installation:
devsheets

3. Install (Windows)

  1. Download devsheets.exe

  2. Move it to a folder such as:

text
C:\devsheets\
  1. Add that folder to your System PATH
  2. Then run in terminal:
text
devsheets.exe

Usage

The command format is:

bash
devsheets <topic> <command>

Example

Show the Git cheatsheet:

bash
devsheets git git

Show docker image methods cheatsheet:

bash
devsheets docker image