UniTO/tesi/galla/preview.sh

9 lines
142 B
Bash
Raw Normal View History

2020-02-17 17:31:11 +01:00
#!/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 &