A simple CLI tool to explain common Linux commands with usage examples and flag descriptions.
npm install -g .Or use directly:
node index.js <command># Explain a specific command
explain rm
# List all available commands
explain list
# Show help
explain --help$ explain rm
π RM
ββββββββββββββββββββββββββββββββββββββββββββββββββ
Remove files or directories
Usage: rm [OPTIONS] FILE...
Common Flags:
-r Remove directories recursively
-f Force removal without prompting
-i Prompt before every removal
-rf Recursively force remove (dangerous!)
β οΈ Be careful! rm -rf can permanently delete files without recovery- ls, cd, rm, cp, mv, mkdir, pwd
- cat, grep, find
- chmod, chown
- ps, kill
- tar, sudo
MIT