echo
Installation
SKILL.md
echo
Print text to standard output in shell scripts and interactive sessions.
Prefer printf when portability and escape-sequence handling matter.
Quick Start
- Print a string:
echo "Hello, world" - Interpolate a variable:
echo "Path: $PATH" - Write to a file:
echo "content" > file.txt
Intent Router
references/cheatsheet.md— echo vs printf, common flags, escape sequences, variable interpolation, file writingreferences/advanced-usage.md— Portable printf patterns, ANSI colour output, here-strings, multiline output, and shell differencesreferences/troubleshooting.md—-eflag portability, double-vs-single quotes, newline handling, Windows CRLF