Run TUFLOW From a Batch-file: Difference between revisions

Content deleted Content added
Line 135:
Please be aware that the % symbol is a special character in a batch file. If the % symbol is used within a wildcard, it will not be read when searching for that wildcard in TUFLOW.<br>
For example if the following event wildcard is used;<br>
*-e 10% <br>
TUFLOW will search for '10' instead of '10%' as the event wildcard.<br>
<br>
It is recommended that modellers avoid the use of a % symbol in any wildcard values. The string 'pct' is a great alternative for the % symbol. <br>
For example, using:<br>
*-e 10pct <br>
Instead of:<br>
*-e 10%<br>
<br>
Alternatively using the % symbol twice in a row as shown below should also result in the desired wildcard value.<br>
*-e 10%% (TUFLOW will search for 10%)
 
==Advanced Batch Files==