#!/bin/bash a=$(ps -ef | grep -e "$1" | grep -v $$| wc -l) a=$((a-1)) echo "$a prozess(e) von $1 gefunden" exit $a