7 lines
140 B
Bash
7 lines
140 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
export BASE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||
|
cd ${BASE}
|
||
|
|
||
|
python3 torrent_test.py
|