nroff 285 B

123456789101112
  1. #!/bin/sh
  2. # The whole point of this wrapper is to replace emboldening factor -u0 with
  3. # -u1 under certain circumstances on Solaris.
  4. if [ "$1,$2,$3" = "-u0,-Tlp,-man" ]; then
  5. shift
  6. exec /usr/bin/nroff -u1 "$@"
  7. else
  8. # Some other invocation of nroff
  9. exec /usr/bin/nroff "$@"
  10. fi