summaryrefslogtreecommitdiff
path: root/.local/bin/tdout
blob: 2d234645ff912856f08e88bffac4e88fcdb513f2 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# opout: "open output": A general handler for opening a file's intended output.
# I find this useful especially running from vim.

basename="$(echo "$1" | sed 's/\.[^\/.]*$//')"

case "$1" in
	*.tex|*.rnw|*.gd|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$READER" "$basename"-tdtable.pdf >/dev/null 2>&1 & ;;
esac