dogeystamp
99fd8e3788
- added lref feature which links to files in the knowledge base without having to add ten million "../../../" - instructions changed so that now you can link to "/templates/template.typ" without having to add ten million "../../../" to the path
14 lines
178 B
Bash
Executable File
14 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PROGNAME=$(basename "$0")
|
|
|
|
if [ -z "$TYPST_ROOT" ]; then
|
|
echo "$PROGNAME: "'Please set $TYPST_ROOT.'
|
|
exit 1
|
|
fi
|
|
|
|
cat <<EOF > $1
|
|
prefix: "$TYPST_ROOT"
|
|
me: "$USER"
|
|
EOF
|