...
Ecf Script
We will create new family label with a task t1.
Create ecf script $HOME/course/test/label/t1.ecf
Code Block | ||||
---|---|---|---|---|
| ||||
%include <head.h>
n=1
while [[ $n -le 5 ]] # Loop 5 times
do
msg="The date is now $(date)"
ecflow_client --label=info "$msg" # Set the label
sleep 60 # Wait a one minute
(( n = $n + 1 ))
done
ecflow_client --label=info "I have now finished my work."
%include <tail.h> |
...