X-Git-Url: https://git.gag.com/?p=debian%2Fsplat;a=blobdiff_plain;f=docs%2Fspanish%2Fman%2Fdocmaker;fp=docs%2Fspanish%2Fman%2Fdocmaker;h=3891f0b096a116ee81a99b2adf22bba90d98960c;hp=0000000000000000000000000000000000000000;hb=dcc481697c227c3b265d1e68a8a82910c818332c;hpb=3504a1ce545f764f4e96a31fa53dbf498e0bd9f9 diff --git a/docs/spanish/man/docmaker b/docs/spanish/man/docmaker new file mode 100755 index 0000000..3891f0b --- /dev/null +++ b/docs/spanish/man/docmaker @@ -0,0 +1,16 @@ +#!/bin/bash +# This script builds the man page, pdf, and postscript +# and text documentation from the groff source "splat.man". +echo -n "Creating postscript file... " +groff -e -T ps -man splat.man > ../postscript/splat.ps +echo +echo -n "Creating man page... " +groff -e -T ascii -man splat.man > splat.1 +echo +echo -n "Creating text file... " +ul -t dumb splat.1 > ../text/splat.txt +echo +echo -n "Creating pdf file... " +ps2pdf ../postscript/splat.ps ../pdf/splat.pdf +echo +echo "Done!"