[go: up one dir, main page]

Menu

[3bbbb9]: / start_electrip.sh  Maximize  Restore  History

Download this file

9 lines (7 with data), 230 Bytes

1
2
3
4
5
6
7
8
9
#!/bin/bash
# get the directory this file is located within
# and add it to PYTHONPATH
DIR=$( cd "$( dirname "${0}" )" && pwd );
export PYTHONPATH=${DIR}/src;
# start electrip and pass all arguments to it
python3 -m electrip $*;