File: sgml2latex

package info (click to toggle)
linuxdoc-tools 0.9.86-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,312 kB
  • sloc: ansic: 16,247; perl: 3,769; sh: 1,134; makefile: 813; 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