KaKiLa

Joined 16 November 2011
50 bytes added ,  14 August 2017
m
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
= Tips and Tricks=
= Tips and Tricks=
== Get file info when generate_html fails or warns==
== Get file info when generate_html fails or warns==
Since generate_html gives errors about the random files generated, it is useless when debugging help text. The following command shows the first few lineas of the files created by generate_html.
Since generate_html gives errors about the random files generated, it is useless when debugging help text. The following command shows the first few lines of the files created by generate_html.


<pre> f_old=/tmp/$(ls -1 -t /tmp | head -1);while true; do f=/tmp/$(ls -1 -t /tmp | head -1); if [ "$f" != "$f_old" ]; then echo $f; grep '@deftypefn ' --include="*octave-help*" $f; f_old=$f; fi; done</pre>
<pre> f_old=/tmp/$(ls -1 -t /tmp | head -1);while true; do f=/tmp/$(ls -1 -t /tmp | head -1); if [ "$f" != "$f_old" ]; then echo $f; grep '@def' --include="*octave-help*" $f; f_old=$f; fi; done</pre>


run this in a different terminal before using generate_html
run this in a different terminal before using generate_html
Line 117: Line 117:
== EPA software suite ==
== EPA software suite ==
Create native interfaces to the EPA software suites
Create native interfaces to the EPA software suites
[[See this group https://github.com/OpenWaterAnalytics]]
=== SWMM ===
=== SWMM ===
* [https://www.epa.gov/water-research/storm-water-management-model-swmm Official page]
* [https://www.epa.gov/water-research/storm-water-management-model-swmm Official page]
657

edits