9 lines
200 B
Plaintext
Raw Normal View History

#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
2022-03-11 10:49:55 -07:00
command -v python3 > /dev/null || python_cmd='python'
BASEDIR=$(dirname $0)
$python_cmd -u $BASEDIR/nrsrf.py $@