How Bash Actually Interprets Your Script
Bash scripts are easy to start writing.
#!/usr/bin/env bash
name="admin"
echo "Hello $name"
The trouble usually starts when the script gets a little more complicated.
Bash doesn't simply take a line
dpkd.hashnode.dev16 min read