scwrypts/zsh/office/latex/open-pdf

11 lines
180 B
Bash
Executable File

#!/bin/zsh
use office/latex
#####################################################################
MAIN() {
local PDF=$(LATEX__GET_PDF $@)
[ ! $PDF ] && return 1
OPEN "$PDF"
}