crontab实现每秒执行
Posted xiluhua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了crontab实现每秒执行相关的知识,希望对你有一定的参考价值。
crontab
#!/bin/bash step=$1 for (( i = 0; i < 600000; i=(i+step) )); do date +%Y%m%d‘ ‘%H:%M:%S >>/home/xiluhua/procNum.txt printf " " ps -ef|grep memcached | grep 11211 >> /home/xiluhua/procNum.txt printf "\n" >> /home/xiluhua/procNum.txt sleep $step done
以上是关于crontab实现每秒执行的主要内容,如果未能解决你的问题,请参考以下文章
linux里面如何利用crontab 和 notify-send ,实现每秒钟发送一次通知到桌面?