10 lines
185 B
Bash
10 lines
185 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
git pull
|
||
|
|
||
|
/usr/bin/pdflatex -file-line-error -interaction nonstopmode Main.tex
|
||
|
rm Main.aux Main.out Main.toc
|
||
|
cp Main.pdf /home/david/fileshare/CV.pdf
|