blob: 0fcf656aa3d5c3e99e97a73c8c5ffe317f89e8e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
INPUT_ARGS=$@
if [[ $@ =~ '--python2' ]]; then
INPUT_ARGS=${@//--python2/}
source find_python.sh --python2
fi
if [[ $@ =~ '--python3' ]]; then
INPUT_ARGS=${@//--python3/}
source find_python.sh --python3
fi
if [ -z "$PYTHON" ]; then
source find_python.sh
fi
export PYTHONPATH=automation/trex_control_plane/stl
printf "\nUsing '$PYTHON' as Python interpeter\n\n"
$PYTHON -m console.trex_console $INPUT_ARGS
|