Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. rm -rf *.png
  3. rm -rf *.pdf
  4. osascript -e 'quit app "Preview"'
  5. mkdir tmp
  6. rsync -aq src/* tmp
  7. rsync -aq lib/* tmp --exclude full
  8. cd tmp
  9. pdflatex -shell-escape -interaction=nonstopmode Presentation.tex
  10. cd ..
  11. cd ..
  12. mv Presentation/tmp/Presentation.pdf ..
  13. cd Presentation
  14. rm -rf tmp
  15. open ../../Presentation.pdf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement