Nhiệm vụ: chạy các khối bao gồm 3-5 lệnh (song song / nền). Khối ví dụ:
dd if=/dev/urandom of=/mnt/1/x bs=1024 count=1024000000 &
dd if=/dev/urandom of=/mnt/2/x bs=1024 count=1024000000 &
dd if=/dev/urandom of=/mnt/3/x bs=1024 count=1024000000 &
Khi xong, khối tiếp theo sẽ chạy. Tôi cho rằng, điều này có thể được thực hiện thông qua các tập tin khóa:
nhiệm vụ1.sh:
real_task1 real_param1 ; rm /var/lock/myscript/task1.lock
nhiệm vụ2.sh:
real_task2 real_param1 ; rm /var/lock/myscript/task2.lock
...
taskgen.sh:
# loop
# while directory isn't empty - wait...
gen_tasks.pl # build task files from some queue
for i in 1 2 3; do touch /var/lock/myscript/task$i.lock ; done
./task1.sh &
./task2.sh &
./task3.sh &
# if task1.sh doesn't exits then exit, else loop waits for files to be deleted
Một số phương pháp để kiểm tra xem thư mục có trống không có thể được tìm thấy ở đây , không chắc chắn nên sử dụng thư mục nào;
Câu hỏi : cách nào tốt hơn để thực hiện điều này?
PS Phương pháp báo cáo trạng thái có thể:
command && report_good_state.sh taskid ; report_state_done.sh taskid; rm /var/lock/myscript/taskN.lock