...
Text
It is good practice to suspend your suite before you reload any part of it.
In ecflowview right click on the suite and select “Suspend”.
Once you made your change(specified below) you can right click on the suite and “Resume” it.
# Definition of the suite test
suite test
edit ECF_HOME "$HOME/course" # replace '$HOME' with the path to your home directory
task t1
task t2
endsuite
As before replace $HOME with the real path to your home directory.
Then you must load the file again:
> ecflow_client --load test.def
Warning
Warning |
---|
This will fail because the suite is already loaded |
Because the suite is already defined, you need to delete and reload it first:
> ecflow_client --delete=_all_
> ecflow_client --load=test.def
Then restart the suite:
> ecflow_client --begin=test
Rather than deleting, loading and beginning the suite every time you can replace
all or part of the suite for example to replace whole suite.
> ecflow_client --replace /test test.def
or to replace part of the suite:
> ecflow_client --replace /test/t2 test.def
...