comp 127 B

12345
  1. #!/bin/sh
  2. [ $# -eq 0 ] && echo "specify an .ms file" && exit 1
  3. groff -e "$1" -ms -Tpdf > $(echo "$1" | sed -e "s/\.ms/.pdf/")