我们可能会遇到这样的情景:必须在每个工作日定时执行Linux服务器上的某个程序。那么有没有办法实现这一功能呢?答案是肯定的。我们可以运用Shell脚本简单实现这一功能。
原理很简单,Shell脚本内部每隔1秒查询一次当前时间、日期以及星期数,当检测到当前星期数week非0或6(0代表星期天,6代表星期六)且时间curTime大于指定时间startTime时,执行指定的程序program。为了保证每天仅执行一次指定程序program,还引用了变量isFirstTime做标记。具体代码如下:
#!/bin/sh #Section configuration(配置部分) #Task Time ,example:(Time ::);(Time ::); startTime= #the programs you want to execute(要执行的程序) program=ps #Section promgram (程序执行部分) perDate=$(date "+%Y%m%d") isNewDay= isFirstTime= echo 'Task schedule Time: ('$startTime') program: ('$program') Waiting...' while true ; do curTime=$(date "+%H%M%S") curDate=$(date "+%Y%m%d") #Check week day(周末不执行) week=`date +%w` ] || [ $week -eq ];then isNewDay= continue else #check and run script(工作日执行) " ];then if [ "$curTime" -gt "$startTime" ];then " ];then echo 'The program ('$program') Running...' $program echo 'The program ('$program') Stopped...' fi isNewDay= else " ];then echo 'New Day: ('$curDate') Task schedule Time: ('$startTime') Waiting...' isFirstTime= fi fi else #new day start(开始新的一天) if [ "$curDate" -gt "$perDate" ];then echo 'New Day: ('$curDate') Task schedule Time: ('$startTime') Waiting...' isNewDay= perDate=$curDate fi fi fi done
该Shell脚本的功能为每个工作日的11点32分执行一次ps命令,执行的效果如下图所示。
Shell脚本实现每个工作日定时执行指定程序
当然该脚本只是为了演示这一定时原理,实际应用中可以指定其他的程序或者脚本,并利用nohup命令让其后台运行。