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 "Data::Storage" \ |
12 |
--infile Data-Storage.pod \ |
13 |
--outfile Data-Storage.html \ |
14 |
--backlink "$backlink" |
15 |
|
16 |
$mypod2html --title "Data::Transfer::Sync" \ |
17 |
--infile Data-Transfer-Sync.pod \ |
18 |
--outfile Data-Transfer-Sync.html \ |
19 |
--backlink "$backlink" |
20 |
|