51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
echo >>"$fmt" ".SH DESCRIPTION"
tail -n+$(expr $descline + $offset) "$file" | cmark -t man >> "$fmt"
test "$doc_html" = "yes" && {
mkdir -p "$htmldest"
groff -Thtml -Kutf8 -m man "$fmt" > "$html"
say "wrote html page for $stem to $html"
}
test "$doc_pdf" = "yes" && {
mkdir -p "$pdfdest"
groff -Tpdf -Kutf8 -m man "$fmt" > "$pdf"
say "wrote pdf for $stem to $pdf"
}
test "$doc_man" = "yes" && {
mkdir -p "$mandest"
if has gzip; then
man="$man.gz"
gzip -c -f "$fmt" > "$man"
else
mv "$fmt" "$man"
fi
say "wrote manpage for $stem to $man"
}
|
|
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
echo >>"$fmt" ".SH DESCRIPTION"
tail -n+$(expr $descline + $offset) "$file" | cmark -t man >> "$fmt"
test "$doc_html" = "yes" && {
mkdir -p "$htmldest"
groff -Thtml -Kutf8 -m man "$fmt" > "$html"
test "$verbose" != "loud" ||
say "wrote html page for $stem to $html"
}
test "$doc_pdf" = "yes" && {
mkdir -p "$pdfdest"
groff -Tpdf -Kutf8 -m man "$fmt" > "$pdf"
test "$verbose" != "loud" ||
say "wrote pdf for $stem to $pdf"
}
test "$doc_man" = "yes" && {
mkdir -p "$mandest"
if has gzip; then
man="$man.gz"
gzip -c -f "$fmt" > "$man"
else
mv "$fmt" "$man"
fi
test "$verbose" != "loud" ||
say "wrote manpage for $stem to $man"
}
|