6 lines
117 B
Bash
Executable file
6 lines
117 B
Bash
Executable file
#!/bin/sh
|
|
|
|
here="$(dirname $0)"
|
|
this="$(basename $0)"
|
|
. ${here}/.venv/bin/activate
|
|
exec python ${here}/${this}.py $@
|