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会出现~符号

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脚本--变量(后附简单shell脚本案例)!

shell脚本翻译 急求

shell脚本书写方法

如何在shell脚本里调用另一个shell脚本

shell脚本获取参数&在线执行shell脚本

shell脚本中#是啥意思