4 lines
92 B
Bash
4 lines
92 B
Bash
|
#!/bin/sh
|
||
|
cd "$(dirname "$(realpath "$0")")"
|
||
|
exec python3 -m "$(basename -s .sh "$0")" "$@"
|