getcomproot (380B)
1 #!/bin/sh 2 3 # A helper script for LaTeX/groff files used by `compiler` and `opout`. 4 # The user can add the root file of a larger project as a comment as below: 5 # % root = mainfile.tex 6 # And the compiler script will run on that instead of the opened file. 7 8 texroot="$(sed -n 's/^\s*%.*root\s*=\s*\(\S\+\).*/\1/p' "${1}")" 9 [ -f "${texroot}" ] && readlink -f "${texroot}" || exit "1"