AnkiNoteTemplate/antp.sh

12 lines
192 B
Bash
Raw Permalink Normal View History

2021-04-20 10:48:24 +00:00
#!/bin/sh -e
2021-04-20 09:27:48 +00:00
2021-04-20 10:48:24 +00:00
readonly module=antp
if ! [ -d "$module" ]; then
readonly this=$(readlink -f -- "$0")
readonly dir=$(dirname -- "$this")
cd -- "$dir" || exit 1
fi
2021-04-20 10:48:24 +00:00
python3 -m "$module" "$@"