Files
scwrypts/zsh/office/latex/open-pdf
T

11 lines
180 B
Bash
Raw Normal View History

2022-08-09 17:42:31 -06:00
#!/bin/zsh
2023-02-21 18:44:27 -07:00
use office/latex
2022-08-09 17:42:31 -06:00
#####################################################################
2024-02-06 14:06:44 -07:00
MAIN() {
2023-02-21 18:44:27 -07:00
local PDF=$(LATEX__GET_PDF $@)
2022-08-09 17:42:31 -06:00
[ ! $PDF ] && return 1
2023-02-21 18:44:27 -07:00
OPEN "$PDF"
2022-08-09 17:42:31 -06:00
}