2019-12-03 22:12:44 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# from https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/compiler
|
|
|
|
#
|
|
|
|
# This script will compile or run another finishing operation on a document. I
|
|
|
|
# have this script run via vim.
|
|
|
|
#
|
|
|
|
# Compiles .tex. groff (.mom, .ms), .rmd, .md. Opens .sent files as sent
|
|
|
|
# presentations. Runs scripts based on extention or shebang
|
2020-02-03 21:10:11 +00:00
|
|
|
#
|
|
|
|
# Expects the file to compile as first argument.
|
|
|
|
# Desired output format(s) can be specified in optional arguments following.
|
2019-12-03 22:12:44 +00:00
|
|
|
|
2020-02-08 19:23:55 +00:00
|
|
|
file=$1
|
|
|
|
if [ ! -f "$file" ]; then
|
|
|
|
echo "File does not exist."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
printf "file: %s\n" "$file"
|
|
|
|
fi
|
2020-02-03 21:10:11 +00:00
|
|
|
|
|
|
|
if [ "$#" -gt 1 ]; then
|
|
|
|
shift
|
|
|
|
formats="$*"
|
|
|
|
fi
|
|
|
|
|
2019-12-03 22:12:44 +00:00
|
|
|
dir=$(dirname "$file")
|
|
|
|
base="${file%.*}"
|
|
|
|
|
|
|
|
cd "$dir" || exit
|
|
|
|
|
|
|
|
textype() {
|
2020-02-08 19:23:55 +00:00
|
|
|
if (sed 5q "$file" | grep -i -q 'xelatex') && exist xelatex; then
|
2019-12-04 15:57:15 +00:00
|
|
|
command="xelatex"
|
2020-02-08 19:23:55 +00:00
|
|
|
elif exist pdflatex; then
|
2019-12-04 15:57:15 +00:00
|
|
|
command="pdflatex"
|
|
|
|
fi
|
2019-12-03 22:12:44 +00:00
|
|
|
$command --output-directory="$dir" "$base" &&
|
|
|
|
grep -i addbibresource "$file" >/dev/null &&
|
|
|
|
biber --input-directory "$dir" "$base" &&
|
|
|
|
$command --output-directory="$dir" "$base" &&
|
|
|
|
$command --output-directory="$dir" "$base"
|
|
|
|
}
|
|
|
|
|
2019-12-04 15:57:15 +00:00
|
|
|
sendtoRmd() {
|
2020-02-03 21:10:11 +00:00
|
|
|
printf "formats: %s\n" "$formats"
|
2020-02-08 19:23:55 +00:00
|
|
|
## FIXME this is horribly inefficient, should just pass all formats to R
|
|
|
|
# but R expects them as "strings" and I don't know how to quote the individual words
|
|
|
|
if [ -n "$formats" ]; then
|
|
|
|
for fmt in $formats; do
|
|
|
|
exist R critical && echo "require(rmarkdown); render('$1', c(\"$fmt\"))" | R -q --vanilla
|
|
|
|
done
|
|
|
|
else
|
|
|
|
exist R critical && echo "require(rmarkdown); render('$1')" | R -q --vanilla
|
|
|
|
fi
|
2019-12-04 15:57:15 +00:00
|
|
|
}
|
|
|
|
|
2019-12-03 22:12:44 +00:00
|
|
|
case "$file" in
|
|
|
|
*\.ms) refer -PS -e "$file" | groff -me -ms -kept -T pdf >"$base".pdf ;;
|
|
|
|
*\.mom) refer -PS -e "$file" | groff -mom -kept -T pdf >"$base".pdf ;;
|
|
|
|
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf >"$base".pdf ;;
|
2020-02-03 21:10:11 +00:00
|
|
|
*\.[Rr]md | *\.md | *\.mkd | *\.markdown) sendtoRmd "$file" "$formats" ;;
|
2019-12-03 22:12:44 +00:00
|
|
|
*\.tex) textype "$file" ;;
|
|
|
|
*config.h) sudo make install ;;
|
|
|
|
*\.c) cc "$file" -o "$base" && "$base" ;;
|
|
|
|
*\.py) python "$file" ;;
|
|
|
|
*\.go) go run "$file" ;;
|
|
|
|
*\.sent) setsid sent "$file" 2>/dev/null &;;
|
|
|
|
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
|
|
|
|
esac
|