File: sgml2latex

package info (click to toggle)
linuxdoc-tools 0.9.82-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,280 kB
  • sloc: ansic: 16,299; perl: 3,754; sh: 1,147; makefile: 816; lex: 566; lisp: 309
file content (8 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#!/bin/sh

if which latex > /dev/null 2>&1; then
    exec /usr/bin/linuxdoc --backend=latex "$@"
else
    echo "Please install latex to use LinuxDoc DTD SGML LaTeX/PS/PDF Conversion"
    exit 1
fi