| 1 |
#!/bin/bash |
| 2 |
|
| 3 |
css=http://netfrag.org/horde/css.php?app=chora |
| 4 |
backlink="back to top" |
| 5 |
mypod2html="pod2html --header --css $css" |
| 6 |
|
| 7 |
echo ----------------------------------------- |
| 8 |
echo generating html |
| 9 |
echo ----------------------------------------- |
| 10 |
|
| 11 |
$mypod2html --title "OEF::About" \ |
| 12 |
--infile OEF-About.pod \ |
| 13 |
--outfile OEF-About.html \ |
| 14 |
--backlink "$backlink" |
| 15 |
|
| 16 |
$mypod2html --title "OEF::Notes::CPAN" \ |
| 17 |
--infile OEF-Notes-CPAN.pod \ |
| 18 |
--outfile OEF-Notes-CPAN.html \ |
| 19 |
--backlink "$backlink" |
| 20 |
|
| 21 |
$mypod2html --title "OEF::Notes::Misc" \ |
| 22 |
--infile OEF-Notes-Misc.pod \ |
| 23 |
--outfile OEF-Notes-Misc.html \ |
| 24 |
--backlink "$backlink" |
| 25 |
|
| 26 |
$mypod2html --title "OEF::Why::Queue" \ |
| 27 |
--infile OEF-Why-Queue.pod \ |
| 28 |
--outfile OEF-Why-Queue.html \ |
| 29 |
--backlink "$backlink" |
| 30 |
|