内容简介:有时候我们需要每秒执行一次命令,通过linux自带的cron却不能实现,新版的cron据说可以精确到秒。很简单的,通过下面的方法,你也能每秒执行一次自己想要的任务了
有时候我们需要每秒执行一次命令,通过linux自带的cron却不能实现,新版的cron据说可以精确到秒。
很简单的,通过下面的方法,你也能每秒执行一次自己想要的任务了:)
1.编写shell脚本
mkdir /root/bin
vi /root/bin/gaojinbo.sh
#!/bin/sh
while [ true ]; do
/bin/sleep 1
/bin/date >>/tmp/date.txt
done
2.后台运行
nohup /root/bin/gaojinbo.sh &
3.确认每秒执行
tail -f /tmp/date.txt
完成!
k@ygsi:/cus$ while true ; do sleep 1 ; du mozilla-central/ --max-depth=1; du -h mozilla-central/ --max-depth=1;echo $'\t'; done
k@ygsi:/cus$ while true ; do sleep 1 ; du mozilla-central/ --max-depth=1; du -h mozilla-central/ --max-depth=1;echo $'\t\n'; done
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Spring 执行 sql 脚本(文件)
- Redis Lua脚本的执行原理
- unix – 如何在shell脚本中使用并行执行?
- 欲求不满之 Redis Lua脚本的执行原理
- 从PowerShell内存转储中提取执行的脚本内容
- go redigo执行lua脚本 实现原子操作
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Types and Programming Languages
Benjamin C. Pierce / The MIT Press / 2002-2-1 / USD 95.00
A type system is a syntactic method for automatically checking the absence of certain erroneous behaviors by classifying program phrases according to the kinds of values they compute. The study of typ......一起来看看 《Types and Programming Languages》 这本书的介绍吧!