bash
Installation
SKILL.md
What I do
- Write bash scripts for automation
- Process text with awk and sed
- Use find and xargs effectively
- Handle command-line arguments
- Manage environment variables
- Implement error handling
- Create utility functions
When to use me
When automating tasks, building CLI tools, or managing systems.
Basics
#!/bin/bash
# Variables
name="World"
echo "Hello, $name!"