Once the symbolic link to the tmg2html executable is in place, how would I want to include tmg2html in localupdate.sh?
Would I want to change:
| if [ "$graphflag"!="-k" ];then |
| mv $tmwebbase/$graphdir$tmpdir/$datestr |
| mv $datestr/$graphdir$tmwebbase |
| fi |
to something like this?
if [ "$graphflag"!="-k" ];then
graphs="ls "$datestr/$graphdir"/*.tmg"forgin$graphsdo
tmg2html $g$g".html"done
mv $tmwebbase/$graphdir$tmpdir/$datestr
mv $datestr/$graphdir$tmwebbasefi
Once the symbolic link to the tmg2html executable is in place, how would I want to include tmg2html in
localupdate.sh?Would I want to change:
DataProcessing/siteupdate/python-teresco/localupdate.sh
Lines 62 to 65 in a12a054
to something like this?