What problem does it solve? Working in Unix terminals requires remembering dozens of command syntaxes, operators, and scripting idioms, and mistakes like unquoted variables or missing error handling can break scripts or lose data. ## Core Features & Use Cases - Command Reference: Quick tables for file operations, process management, text processing with grep/sed/awk, networking with curl, and environment variables. - Script Template: A reusable Bash script skeleton with set -euo pipefail, colored logging functions, and a main entry point. - Error Handling Patterns: Trap-based cleanup, exit-on-error options, and common idioms like default values and command existence checks. - Use Case: When asked to kill a process occupying port 3000 or write a deployment script that fails safely, the AI applies the exact patterns from this reference instead of guessing syntax. ## Quick Start Use the bash-linux skill to write a script that finds all JavaScript files modified today and archives them into a tarball.