summaryrefslogtreecommitdiff
path: root/zshfunc/update-lit
blob: 92b04a48343e918e8e0bcb11f68416eee254cb9b (plain)
1
2
3
4
5
6
7
8
9
10
11
## vim:ft=zsh:foldmethod=marker

(
local f
local b=~/projects/uni/lit

(cd "$b" && (cd bibtex && git pull) && (cd papers && git pull))
for f in weasel.bib names-long.bib names-short.bib; do
  if [ -e "$f" ] ; then cp "$b/bibtex/$f" .; fi
done
)