#! /usr/bin/bash # Datei: mybang echo "0:${0}" echo "1:${1}" echo "2:${2}" if [[ "${USER}" == "pi" ]]; then echo "User pi darf python ausführen." python ${1} else echo "Du darfst kein Python ausführen." fi