8 lines
116 B
Bash
8 lines
116 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
BASEDIR=$(dirname "$0")
|
||
|
|
||
|
export PYTHONPATH="$BASEDIR/../../../../lib/python"
|
||
|
|
||
|
python3 "$BASEDIR/hack.py"
|