nilstk
Goto Top

Shell Script

Moin,

ich möchte im Apache (Suse 8.1) gerne ein Shell Script haben, welche Befehle ausführen kann bzw. andere Scripte ausführt.

Wie mache ich das? Wie überprüfe ich, ob ich Erfolg hatte (d.h. externes script erfolgreich ausgeführt)?

#!/bin/bash
echo Apache shutdown...
/etc/init.d/apache stop
exit 0

(klappt so leider nicht - Ideen?)

Content-ID: 32898

Url: https://administrator.de/forum/shell-script-32898.html

Ausgedruckt am: 24.12.2024 um 16:12 Uhr

Dani
Dani 20.05.2006 um 13:16:32 Uhr
Goto Top
Hi,
#!/bin/bash
echo Apache shutdown...
/etc/init.d/apache stop
exit 0

/bin/bash /etc/init.d/apache stop


Gruß
Dani