9 lines
275 B
Bash
Executable File
9 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# watch all files and rebuild the pdf on any changes
|
|
|
|
# NOTE we'll need some ubuntu packages installed:
|
|
# apt install texlive-pictures texlive-fonts-recommended texlive-extra-utils texlive-xetex entr ripgrep
|
|
|
|
rg -l . | entr texliveonfly -c xelatex alx/resume.tex
|