| 1234567891011121314151617 | #!/usr/bin/env bashset -eu -o pipefailDEBUG=${DEBUG:=0}if [[ "$DEBUG" = "1" ]]; then  set -o xtracefiif ! hash shellharden 2>/dev/null; then  cat <<< "[ERROR] 'shellharden' not found." 1>&2;  exit 78fiecho "$@"exit 1shellharden --check "$@"
 |