任何人都可以告訴我這個腳本究竟做了什麼?Linux腳本啓動,停止,重新啓動
#! /bin/sh
test –f /usr/bin/sshd || exit 0
case 「$1」 in
start)
echo –n 「Starting sshd: sshd」
/usr/sbin/sshd
echo 「.」
;;
stop)
echo –n 「Stopping sshd: sshd」
kill `cat /var/run/sshd.pid`
echo 「.」
;;
restart)
echo –n 「Stopping sshd: sshd」
kill `cat /var/run/sshd.pid`
echo 「.」
echo –n 「Starting sshd: sshd」
/usr/sbin/sshd
echo 「.」
;;
*)
echo 「Usage: /etc/init.d/sshd start|stop|restart」
exit 1
;;
esac
我想知道究竟該部分:
#! /bin/sh
test –f /usr/bin/sshd || exit 0
case 「$1」 in
start)
echo –n 「Starting sshd: sshd」
/usr/sbin/sshd
echo 「.」
;;
確實因爲其他部分是一樣的! 請;)
謝謝你,你很清楚;) – Erma 2011-01-25 19:12:11