File size: 204 Bytes
3d2a3a3
 
 
 
 
 
 
1
2
3
4
5
6
7
#!/bin/bash

command -v python3 >/dev/null 2>&1 || { echo >&2 "Python 3 is required but it's not installed. Aborting."; exit 1; }

PYTHON_SCRIPT_PATH="sparrowdata.py"

python3 "${PYTHON_SCRIPT_PATH}" "$@"