首页 > 系统服务 > 详细

shell编程:命令替换的运用

时间:2019-10-22 00:19:47      阅读:84      评论:0      收藏:0      [点我收藏+]

命令替换,有两种方式

方式一:`command`

方式二:$(command)

 

user.sh

查找系统中所有的用户,并且输出

#!/bin/bash

nginx=`netstat -tnlp | grep 80 | grep nginx | wc -l`

if [ "$nginx" -gt 0 ];then

echo "Nginx is running..."

else

echo "Nginx is stopped"

/application/nginx/sbin/nginx

fi

weeks.sh

今年过了多少周,剩下多少周

#!/bin/bash

nginx=`netstat -tnlp | grep 80 | grep nginx | wc -l`

if [ "$nginx" -gt 0 ];then

echo "Nginx is running..."

else

echo "Nginx is stopped"

/application/nginx/sbin/nginx

fi

nginx_check.sh

nginx服务进程检查脚本,检查到nginx停止服务立即重启

#!/bin/bash

nginx=`netstat -tnlp | grep 80 | grep nginx | wc -l`

if [ "$nginx" -gt 0 ];then

echo "Nginx is running..."

else

echo "Nginx is stopped"

/application/nginx/sbin/nginx

fi

 

shell编程:命令替换的运用

原文:https://www.cnblogs.com/soymilk2019/p/11717198.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!