每5个小时执行一次tuxedo脚本

在Linux下设置定时任务(每5个小时执行一次tuxedo脚本)

1.touch test.sh  

2. vi test.sh

#!/bin/bash 
              while   true  
              do
              su - tuxedo
              tmshutdown -k KILL -y&&tmipcrm -y&&tmboot -y
              sleep  18000
              done 
              wait 

3.给test.sh赋予可执行权限,chmod +x test.sh 

4.执行脚本./test.sh,即可执行脚本

5. crontab -e 

6.每5时执行一次  0  */5  *  *  *   sh /tuxedo/shell/test.sh    ,输入 :wq 保存退出 

7.重启   service    crond   start 

你可能感兴趣的:(每5个小时执行一次tuxedo脚本)