Ich habe mir nen tomcat installiert und möchte nun ein init.d Start|Stop|Restart-Script schreiben, welches jedoch abprüft ob schon eine Instanz von Tomcat läuft.
In der Konsole kann man das z.B.:
Code: Alles auswählen
ps -e|grep tomcat
Gruß Marius
Code: Alles auswählen
ps -e|grep tomcat
Code: Alles auswählen
ps -e | grep -i tomcat > /dev/null; [ $? -eq 0 ] && echo "läuft"