7 lines
528 B
Bash
Executable File
7 lines
528 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo $LIBRARY_PATH
|
|
rsync -avz aleph.gutenberg.org::gutenberg-epub/feeds/pg_catalog.csv $LIBRARY_PATH/
|
|
rsync -avz --delete --delete-excluded --exclude "/images/" --exclude "/pg/" --exclude "/retired/" --exclude "/cache/" --exclude "*/*-page-images/*" --exclude "*/*-page-images/" --exclude "*/old/*" --exclude "*/old/" --include "*/" --include "*.htm" --include "*.jpg" --include "*.png" --include "*.gif" --exclude "*" aleph.gutenberg.org::gutenberg $LIBRARY_PATH/html-src
|
|
rm html-src/hosted-by-ibiblio.png
|