Skip to content

Commit

Permalink
added
Browse files Browse the repository at this point in the history
  • Loading branch information
rafm committed Jul 2, 2008
1 parent 07ef530 commit 57ea667
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions create_www_manpages.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

MAN_PAGES=`find ./src -name "*.1"`
DESTDIR='www_doc'

mkdir -p $DESTDIR

for FILE in ${MAN_PAGES}; do
BASENAME=`basename $FILE`
man2html -r $FILE >${DESTDIR}/man1/${BASENAME}.html
done

0 comments on commit 57ea667

Please sign in to comment.