Books/2026.04-Longing/latex/rsync2wsl.sh
2026-06-30 08:19:02 -07:00

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