37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
# 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, .org. Opens .sent files as sent
|
|
# presentations. Runs scripts based on extension or shebang.
|
|
|
|
file="${1}"
|
|
ext="${file##*.}"
|
|
dir=${file%/*}
|
|
base="${file%.*}"
|
|
|
|
cd "${dir}" || exit "1"
|
|
|
|
case "${ext}" in
|
|
[0-9]) preconv "${file}" | refer -PS -e | groff -mandoc -T pdf > "${base}.pdf" ;;
|
|
c) cc "${file}" -o "${base}" && "./${base}" ;;
|
|
cpp) g++ "${file}" -o "${base}" && "./${base}" ;;
|
|
go) go run "${file}" ;;
|
|
h) sudo make install ;;
|
|
java) javac -d classes "${file}" && java -cp classes "${base}" ;;
|
|
md) [ -x "$(command -v lowdown)" ] && \
|
|
lowdown --parse-no-intraemph "${file}" -Tms | groff -mpdfmark -ms -kept -T pdf > "${base}.pdf" || \
|
|
[ -x "$(command -v groffdown)" ] && \
|
|
groffdown -i "${file}" | groff -T pdf > "${base}.pdf" || \
|
|
pandoc -t ms --highlight-style="kate" -s -o "${base}.pdf" "${file}" ;;
|
|
py) python "${file}" ;;
|
|
rs) cargo build ;;
|
|
ty) typst compile "$file" ;;
|
|
*) sed -n '/^#!/s/^#!//p; q' "${file}" | xargs -r -I % "${file}" ;;
|
|
esac
|