bash
Installation
SKILL.md
Bash
Bourne Again SHell, the standard shell for Linux and macOS.
When to Use
- Automating system tasks
- CI/CD pipelines
- File manipulation
- Glue code between CLIs
Quick Start
#!/bin/bash
NAME="World"
echo "Hello, $NAME!"
Bourne Again SHell, the standard shell for Linux and macOS.
#!/bin/bash
NAME="World"
echo "Hello, $NAME!"