两个shell脚本

Posted xiaojinniu425

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个shell脚本相关的知识,希望对你有一定的参考价值。

脚本1停止lampp

 

#!/bin/bash

#set -xv 开启调试模式?

count=`ps -ef|grep lampp|grep -v "grep"|wc -l`  # ”`”是Tab键上面那个按住shift会出现~符号,除去grep本身的命令统计行数

if [ $count -gt 0 ] # 大于一才说明有进程启动了

then

ps -ef|grep lampp|grep -v "grep"|awk ‘{print $2}‘ | xargs kill -9 #awk去第二个,是进程号,xargs是全部杀掉

echo ‘lampp has stopped...‘

else

echo ‘lampp is not running...‘

fi

 

脚本2定时任务

touch /root/zuoye2.sh

vi /root/zuoye2.sh

 

#!/bin/bash       

cat /opt/lampp/logs/access_log > /tmp/`date +%Y-%m-%d`.log  # ”`”是Tab键上面那个,重定向到另一个文件

cat /dev/null > /root/test.txt #清空这个文件

 

crontab –e

59 23 * * * bash /root/zuoye2.sh #建立定时任务

脚本1停止lampp

 

#!/bin/bash

#set -xv

count=`ps -ef|grep lampp|grep -v "grep"|wc -l`  # ”`”Tab键上面那个按住shift会出现~符号

if [ $count -gt 0 ]

then

ps -ef|grep lampp|grep -v "grep"|awk ‘{print $2}‘ | xargs kill -9

echo ‘lampp has stopped...‘

else

echo ‘lampp is not running...‘

fi

 

脚本2定时任务

touch /root/zuoye2.sh

vi /root/zuoye2.sh

 

#!/bin/bash       

cat /opt/lampp/logs/access_log > /tmp/`date +%Y-%m-%d`.log  # ”`”Tab键上面那个

cat /dev/null > /root/test.txt

 

crontab –e

59 23 * * * bash /root/zuoye2.sh

以上是关于两个shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

编写shell脚本,实现如下功能:(1)从命令行读入2个整数;(2)对两个数进行大小比较;(3)在屏幕上输出

用 shell 脚本比较两个列表

你好,shell脚本中,使用两个减号,两边没有单词。这个是啥意思?是控制运行参数吗

两个实用的shell脚本实例

shell脚本替换A、B两个文件里面的内容

Shell脚本编程