rgc (226B)
1 #!/bin/sh 2 3 _compile() { 4 _output="$(basename "$1" .${1##*.}).pdf" 5 groff -ms -Tpdf -Kutf8 -P-pa4 -dpaper=a4 "$1" > $_output 6 } 7 8 [ "$1" = "" ] && echo -e "The groff-compiler-wrapper\nUsage: rgc file" && exit 9 10 _compile "$1"
utiliesA handful of (useful) scripts for unix-like systems | |
| Log | Files | Refs | README | LICENSE |