edepsim-commands-html.sh
Go to the documentation of this file.
1 #!/bin/sh
2 
3 DIR=`pwd`/html
4 
5 if [ ! -x ${DIR} ]; then
6  mkdir ${DIR}
7 fi
8 
9 cd ${DIR}
10 
11 MACRO=`mktemp -t edepsim.XXXXXXXXXX` || exit 1
12 cat >> ${MACRO} <<EOF
13 /control/createHTML /
14 EOF
15 
16 edep-sim $MACRO
17 
18 rm $MACRO