58 lines
961 B
Bash
Executable File
58 lines
961 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Usage: $0 [name]
|
|
|
|
prog_name=$(basename $0)
|
|
tool_version="1.0"
|
|
year=2025
|
|
|
|
fatal() {
|
|
echo "fatal: $*" >&2
|
|
exit 1
|
|
}
|
|
|
|
run() {
|
|
"$@" || fatal "could not run: $*"
|
|
}
|
|
|
|
print_help() {
|
|
cat <<EOF
|
|
Usage: $prog_name [name]...
|
|
|
|
--help print this help and exit.
|
|
--version print version information.
|
|
EOF
|
|
}
|
|
|
|
print_version() {
|
|
cat <<EOF
|
|
$prog_name $tool_version $(git rev-list --count --all 2>/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
|
|
}
|
|
|
|
new_proj() {
|
|
local prj=$1
|
|
mkdir -p $HOME/probe/$prj &&
|
|
cd $HOME/probe/$prj
|
|
}
|
|
|
|
if [ "$#" -eq 0 ]; then
|
|
read -p "(project) " rp
|
|
new_proj $rp
|
|
exit 0
|
|
fi
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
--help) print_help; exit 0 ;;
|
|
--version) print_version; exit 0 ;;
|
|
*)
|
|
new_proj $1; exit 0
|
|
;;
|
|
esac
|
|
shift
|
|
done
|