#!/bin/bash if [[ "$(python3 -V)" =~ "Python 3" ]]; then python3 ../Python/test.py $1 elif [[ "$(python -V)" =~ "Python" ]]; then python ../Python/test.py $1 else echo "You need to install Python. You can use the default repositories of your system." fi