举例:想要实现每天定时重启服务器
1,可以新建一个/home/shell/cron_reboot.sh文件,内容:
#!/bin/bash
reboot
2,在ssh执行命令给这个目录权限。
amh amcrontab set_sh /home/shell/
3,将 amh amcrontab run_sh /home/shell/cron_reboot.sh 这个命令添加在amcrontable中。
以后其它非amh的命令或脚本都可以这样添加。
on going
举例:想要实现每天定时重启服务器
1,可以新建一个/home/shell/cron_reboot.sh文件,内容:
#!/bin/bash
reboot
2,在ssh执行命令给这个目录权限。
amh amcrontab set_sh /home/shell/
3,将 amh amcrontab run_sh /home/shell/cron_reboot.sh 这个命令添加在amcrontable中。
以后其它非amh的命令或脚本都可以这样添加。