This commit is contained in:
2025-10-23 21:49:00 -04:00
parent 8da521f782
commit 07ff4a4645
2 changed files with 60 additions and 4 deletions

View File

@@ -33,15 +33,17 @@ There is NO WARRANTY, to the extent permitted by law.
EOF
}
header=$(cat <<EOF
EOF)
old_args="$@"
while [ $# -gt 0 ]; do
case "$1" in
--help) print_help; exit 0 ;;
--version) print_version; exit 0 ;;
*) fatal "Not implemented yet" ;;
esac
shift
done
PYTHON_BIN="$(command -v python3 || command -v python)"
SCRIPT="__gendoc.py"
exec "$PYTHON_BIN" "$SCRIPT" $old_args