12 lines
350 B
Bash
12 lines
350 B
Bash
#!/bin/bash
|
|
# rsync2wsl - pull Longing .tex files from Dropbox
|
|
SRC=$HOME/dropbox/longing/
|
|
DST=/mnt/e/ldrive/GrailHeart/books/Longing/latex/
|
|
BACKUP=/mnt/e/ldrive/GrailHeart/books/Longing/latex_backup/
|
|
|
|
rsync -av --no-perms --no-times --omit-dir-times \
|
|
--backup --backup-dir=$BACKUP \
|
|
--include='*/' --include='*.tex' --exclude='*' \
|
|
$SRC $DST
|
|
|