我必须运行任务,花费时间3或5分钟 如何在crontab中同时运行多个任务?
crontab -e
0 13 * * * /etc/rip_first_radio.sh
0 13 * * * /etc/rip_second_radio.sh
0 13 * * * /etc/rip_third_radio.sh
0 13 * * * /etc/rip_fourth_radio.sh
答案 0 :(得分:1)
你的crontab配置是正确的。但是你可以将add all添加到一个脚本中并运行。
vi main.sh
./etc/rip_first_radio.sh &
./etc/rip_second_radio.sh &
./etc/rip_third_radio.sh &
./etc/rip_fourth_radio.sh &
并将main.sh添加到cron。
0 13 * * * ./main.sh