#!/bin/sh # Usage: $0 [options]... prog_name=$(basename $0) tool_version="beta" year=2025 fatal() { echo "fatal: $*" >&2 exit 1 } run() { "$@" || fatal "could not run: $*" } print_help() { cat </dev/null || echo 0) Copyright (C) $year vx-clutch. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. EOF } old_args="$@" while [ $# -gt 0 ]; do case "$1" in --help) print_help; exit 0 ;; --version) print_version; exit 0 ;; esac shift done PYTHON_BIN="$(command -v python3 || command -v python)" SCRIPT="__gendoc.py" exec "$PYTHON_BIN" "$SCRIPT" $old_args