/doc/Spanish/userguide-es/pdfgen

http://txt2tags.googlecode.com/ · #! · 12 lines · 10 code · 2 blank · 0 comment · 0 complexity · 96cd6523cdde09b668496caf1c3f8d88 MD5 · raw file

  1. #!/bin/bash
  2. t2t=txt2tags
  3. html=userguide-pdf.html
  4. in=userguide-es.t2t
  5. out=../userguide-es.pdf
  6. $t2t $in
  7. htmldoc --batch pdf.book
  8. rm $html
  9. echo saved $out
  10. exit 0