实战1:编写脚本检查服务器运行状态
[root@xuegod63 ~]# vim status.sh
#!/bin/bash if [ $# -ge 1 ] ; then systemctl status $1 > /dev/null if [ $? -eq 0 ] ; then echo "$1 服务正在运行" else systemctl start $1 fi else echo "执行脚本的格式" echo "sh $0 服务名" fi
[root@xuegod63 ~]# vim status.sh
#!/bin/bash if [ $# -ge 1 ] ; then systemctl status $1 > /dev/null if [ $? -eq 0 ] ; then echo "$1 服务正在运行" else systemctl start $1 fi else echo "执行脚本的格式" echo "sh $0 服务名" fi