weko.io/run

26 lines
452 B
Plaintext
Raw Permalink Normal View History

2021-05-14 21:42:15 +02:00
#!/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
2022-02-23 11:11:09 +01:00
echo ' _'
echo '__ _____| | _____'
echo '\ \ /\ / / _ | |/ / _ \'
echo ' \ V V | __| | (_) |'
echo ' \_/\_/ \___|_|\_\___/'
2021-05-14 21:42:15 +02:00
echo
echo
2022-02-23 11:11:09 +01:00
# https://duckduckgo.com/?q=Figlet+weko
2021-05-14 21:42:15 +02:00
if [ $# -ge 1 ]; then
$@
else
help_generic
fi
end