A collection of Bash and Linux helper scripts and concepts. It covers Bash argument parsing with flags (alternative to getopts), conditional logic, and loops. Includes snippets.
Tag: Bash
A concise Bash quickstart guide. It provides links to a Bash scripting cheatsheet and other Bash helpers. Key examples include the shebang (
#!/usr/bin/env bash
), iterating through a literal array using a for
loop, and demonstrating C-like increment logic with ((counter++))
.