#!/bin/bash # -e Exit immediately if a command exits with a non-zero status. # -u Treat unset variables as an error when substituting. set -eu . ./.env . ./themes/hugo-theme-lowtech/scripts/run echo " ____ _ _ _ " echo "| _ \ ___ ___(_) | (_) ___ _ __ " echo "| |_) / _ \/ __| | | | |/ _ \ '_ \ " echo "| _ < __/\__ \ | |___| | __/ | | |" echo "|_| \_\___||___/_|_____|_|\___|_| |_|" echo echo if [ $# -ge 1 ]; then $@ else help_generic fi end