Zsh Cheatsheet

Customizable, powerful, and extendable shell for interactive and scripting use

Updated at: March 16, 2025

ZSH Basics

ZSH (Z Shell) is a powerful shell with features like improved tab completion, globbing, and command line editing. It's highly customizable and offers significant improvements over traditional shells like Bash.

Configuration

ZSH configuration involves customizing your shell environment through various files, primarily .zshrc. This section covers the structure of configuration files, managing your PATH, setting shell options, and customizing your shell appearance.

Globbing

Globbing is ZSH's powerful pattern matching system for filenames and strings. It extends beyond basic wildcards to offer precise control over matching with qualifiers, modifiers, and extended patterns that can significantly streamline command-line operations.

History Management

ZSH history management provides powerful ways to recall, search, and reuse previously executed commands. With proper configuration, you can share history across sessions, filter out unwanted entries, and efficiently navigate your command history.

Aliases and Functions

Aliases and functions are powerful ZSH features that help streamline your workflow by creating shortcuts for commands and enabling complex operations. Aliases provide simple command substitutions, while functions offer more sophisticated command processing with parameters and logic.

Prompt Customization

The ZSH prompt is highly customizable using special prompt sequences and dynamic elements. You can create complex prompts that display contextual information, use colors, and integrate with version control systems.

Directory Management

ZSH offers powerful directory navigation features that go far beyond basic cd commands. These tools help you efficiently move between directories, maintain history of visited locations, and create shortcuts to frequently accessed paths.

Key Bindings

ZSH offers powerful key binding capabilities allowing you to customize how your shell responds to keyboard input. You can use either Emacs-style (default) or Vi-style key bindings, create custom shortcuts, and even bind complex functions to keys.

ZSH Scripting

ZSH scripting combines the interactive shell's powerful features with robust programming capabilities. Scripts can manipulate data, automate tasks, and extend shell functionality with ZSH's unique parameter expansion, control structures, and error handling mechanisms.

Plugins and Frameworks

ZSH frameworks and plugin managers simplify shell configuration by providing pre-configured settings, themes, and plugins. They help organize your ZSH setup and make it easier to extend functionality without manual configuration.