Linux执行shell脚本完成任务计划是以秒为单位
之前我们接触过sleep以及脚本后台运行,那么这个就可以派上用场了,思路:
1,写一个shell,扔后台运行;
2,shell写一个死循环,执行需要的命令,sleep 间隔秒数。这样,即可实现按秒为单位执行。
例如,我们每间隔一秒打印时间输出到/tmp/date.txt文件中,date.sh 脚本如下:
#!/bin/bash while :; do echo `date` >> /tmp/date.txt sleep 1 done
将脚本扔到后台运行:
nohup /home/shell/date.sh &
当然,也可以借助于screen 建立虚拟终端进行执行,这个工具个人比较喜欢。
相关推荐
彼岸随笔 2020-10-20
yutou0 2020-10-17
jarrygao 2020-11-02
shipinsky 2020-09-23
touchfuture 2020-09-16
hongsheyoumo 2020-09-04
tianhuak 2020-11-24
以梦为马不负韶华 2020-10-20
applecarelte 2020-10-16
ourtimes 2020-10-16
huha 2020-10-16
lianshaohua 2020-09-23
laisean 2020-11-11
zhangjie 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
CARBON 2020-10-20