#!/bin/bash cp -f ../README.rst . cp -f README.rst HOME.rst #echo -e "\n\nNOTE\n-------\n Important: This is only a seconary file. To change, edit the README.rst in the main repository and use makehtml.sh to regenerate this one!" >>README.rst #for file in `ls *.rst`; do echo processing: $file; pre=${file%.rst}; (sed -e 's/<\([[:alpha:]]*\)>/<\1\.html>/g' $file | rst2html.py -) >$pre.html; done; #ls *.html example/* | zip SWAN-doc.zip -@