bash-scripting

#programming/bash#programming#devops

Bash Scripting

Bash (Bourne Again SHell) is the standard Unix shell and scripting language.

#!/usr/bin/env bash
set -euo pipefail

echo "Hello, $USER!"
for f in *.md; do
  echo "Found: $f"
done

See DevOps Hub · Git Workflows · Programming Hub.