15 lines
558 B
Bash
Executable file
15 lines
558 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# opout: "open output": A general handler for opening a file's intended output,
|
|
# usually the pdf of a compiled document. I find this useful especially
|
|
# running from vim.
|
|
#
|
|
# from https://github.com/LukeSmithxyz/voidrice/tree/master/.local/bin
|
|
|
|
basename="$(echo "$1" | sed 's/\.[^\/.]*$//')"
|
|
|
|
case "$1" in
|
|
*.tex|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$FILEREADER" "$basename".pdf >/dev/null 2>&1 & ;;
|
|
*.[0-9]) setsid "$FILEREADER" "$basename".pdf >/dev/null 2>&1 & ;;
|
|
*.html) setsid "$BROWSER" "$basename".html >/dev/null 2>&1 & ;;
|
|
esac
|