summaryrefslogtreecommitdiffstats
path: root/jjb/octopus/build-docu.sh
blob: cbbf265d3289e618f767c1c0a9deaad29a96c5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
for file in $(find . -type f -iname '*.rst'); do
         file_cut="${{file%.*}}"
         html_file=$file_cut".html"
         pdf_file=$file_cut".pdf"
         rst2html $file > $html_file
         rst2pdf $file -o $pdf_file
done
v
v