mirror of
https://github.com/arnaucube/configs.git
synced 2026-02-10 04:26:41 +01:00
13 lines
237 B
Bash
Executable File
13 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
|
|
|
|
DEVICE_PATH=$1
|
|
|
|
if [ -z $DEVICE_PATH ] ; then
|
|
echo "missing 1st argument (DEVICE_PATH), ie. where to download the files"
|
|
exit 1
|
|
fi
|
|
|
|
rsync -avz --progress --ignore-existing tele-rpi5:/mnt/usb/audio/ $DEVICE_PATH
|