CONTACT='stef[at]stc.sh'
BIO=bio.txt
RESUME=resume.tex
CV=cv.tex
PUBLICATIONS=pubs.txt
GITHUB=stefco
PROJECTS=projects.d
BLOGDIR=blog.d
GOOD_CODE=good_code.d
MISCREANTS=bad_code.d
PORTRAIT=portrait.txt
usage() {
sed 's/^ *//;/^$/d' <<<'
USAGE: stc.sh [-h]
Launch an interactive `stef_shell` terminal session to learn more about
Stefan Trklja Countryman. Launch a regular website using `-g` flag.
OPTIONS:
-h Print this help string.
'
exit 0
}
for opt in "$@"; do [[ "${opt}" = "-h" ]] && usage; done
stef_shell \
--cv "${CV}" \
--bio "${BIO}" \
--resume "${RESUME}" \
--github "${GITHUB}" \
--contact "${CONTACT}" \
--blog-dir "${BLOGDIR}" \
--portrait "${PORTRAIT}" \
--projects "${PROJECTS}" \
--good-code "${GOOD_CODE}" \
--miscreants "${MISCREANTS}" \
--publications "${PUBLICATIONS}"