Skip to content

Instantly share code, notes, and snippets.

@birdayz
Created March 22, 2017 11:21
Show Gist options
  • Save birdayz/05fadff17483fbd451e6926475386846 to your computer and use it in GitHub Desktop.
Save birdayz/05fadff17483fbd451e6926475386846 to your computer and use it in GitHub Desktop.
Watch latex files in folder and build new pdf when changes occur
#!/bin/bash
while true; do inotifywait -e modify *.tex>/dev/null 2&>1; latexmk -pdf > /dev/null 2>&1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment