# Verified command patterns

## Runtime endpoint

    /usr/bin/amneziawg show vpn1 dump |
      awk 'NR == 2 {print $3; exit}'

## Authoritative route

    ip route show table 201

Tables 201 through 205 correspond to vpn1 through vpn5.

## Strict multi-probe health

    for probe in 1.1.1.1 8.8.8.8 9.9.9.9
    do
      ping -I vpn1 -c 1 -W 2 "$probe" && break
    done

## File hash

    sha256sum /root/hmn/hmn-refresh-pool-safe.sh |
      awk '{print $1}'

## Root capacity

    df -k /

## Filesystem metadata

    stat -f -c '%b %f %a %c %d' /

## Shell syntax

    sh -n /root/hmn/script.sh
