Skip to content

Instantly share code, notes, and snippets.

View raymondjacobson's full-sized avatar
🎧

Raymond Jacobson raymondjacobson

🎧
View GitHub Profile
### Keybase proof
I hereby claim:
* I am raymondjacobson on github.
* I am raymondjacobson (https://keybase.io/raymondjacobson) on keybase.
* I have a public key whose fingerprint is BEC4 15F4 321B 2FF4 E04B 24A2 D49E DCA3 63B9 DA81
To claim this, I am signing this object:
@raymondjacobson
raymondjacobson / texwatch.sh
Last active August 29, 2015 14:17
TeX Watch: quick & dirty way to watch and update your latex-to-pdf
# Add this function to your shell profile
# But first: get pdflatex and get entr (https://github.com/clibs/entr)
texwatch () {
echo "Watching $1 ..."
ls "$1" | entr pdflatex /_
}