7 lines
257 B
Bash
7 lines
257 B
Bash
#!/bin/bash
|
|
# rsync2db - push Longing .tex files to Dropbox
|
|
SRC=/mnt/e/ldrive/GrailHeart/books/Longing/latex/
|
|
DST=$HOME/dropbox/longing/
|
|
rsync -av --no-perms --no-times --omit-dir-times --inplace \
|
|
--include='*/' --include='*.tex' --exclude='*' $SRC $DST
|