voidrice/.local/bin/compiler

40 lines
1.3 KiB
Text
Raw Normal View History

#!/bin/sh
2019-05-31 19:38:43 -04:00
2018-07-25 13:45:05 -04:00
# This script will compile or run another finishing operation on a document. I
2018-10-26 00:28:09 -04:00
# have this script run via vim.
2018-04-10 17:48:45 -07:00
#
2019-05-31 19:38:43 -04:00
# Compiles .tex. groff (.mom, .ms), .rmd, .md. Opens .sent files as sent
# presentations. Runs scripts based on extention or shebang
2018-04-10 17:48:45 -07:00
2018-07-24 13:34:38 -04:00
file=$(readlink -f "$1")
2018-07-25 13:45:05 -04:00
dir=$(dirname "$file")
2018-04-10 17:48:45 -07:00
base="${file%.*}"
2018-10-26 00:28:09 -04:00
cd "$dir" || exit
2018-04-10 17:48:45 -07:00
2018-07-25 12:14:38 -04:00
textype() { \
command="pdflatex"
( sed 5q "$file" | grep -i -q 'xelatex' ) && command="xelatex"
2018-07-25 13:45:05 -04:00
$command --output-directory="$dir" "$base" &&
2018-10-26 00:28:09 -04:00
grep -i addbibresource "$file" >/dev/null &&
2018-07-25 13:45:05 -04:00
biber --input-directory "$dir" "$base" &&
$command --output-directory="$dir" "$base" &&
$command --output-directory="$dir" "$base"
2018-07-25 12:14:38 -04:00
}
2018-04-10 17:48:45 -07:00
2018-07-25 13:45:05 -04:00
case "$file" in
2019-06-04 16:34:51 -04:00
*\.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 ;;
2019-05-31 19:38:30 -04:00
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;;
2020-01-19 19:26:28 -05:00
*\.[rR]md) Rscript -e "require(rmarkdown); rmarkdown::render('$file', quiet=TRUE)" ;;
2018-07-25 13:45:05 -04:00
*\.tex) textype "$file" ;;
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
2019-01-17 12:18:41 -05:00
*config.h) sudo make install ;;
*\.c) cc "$file" -o "$base" && "$base" ;;
*\.py) python "$file" ;;
2020-04-15 19:58:20 -04:00
*\.m) octave "$file" ;;
*\.go) go run "$file" ;;
2019-01-17 12:18:41 -05:00
*\.sent) setsid sent "$file" 2>/dev/null & ;;
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
2018-04-10 17:48:45 -07:00
esac