UniTO/tesi/galla/preview.sh
Francesco Mecca 0d7ed5e91d ocaml todo
2020-02-17 17:31:11 +01:00

8 lines
142 B
Bash
Executable file

#!/bin/bash
pid=$(ps a | grep -i "tesi.pdf" | grep -v grep | cut -d" " -f 1)
make
if [[ ! -z $pid ]]; then
kill $pid
fi
mupdf tesi.pdf &