EnterMI-scripts/Python/copy_music_library.sh
2017-12-17 13:47:50 +01:00

18 lines
453 B
Bash
Executable File

# Copy Music library via SSH
# Tested in Python 2.7
# I used this script to copy music files from my external thunderbolt disk
# via SSH to a plex server running on a Raspberry Pi with usb disk
#
# You can contact me by e-mail at floris@entermi.nl.
#
# Last updated 17 December, 2017.
#
# Floris van Enter
# http://entermi.nl
#!/bin/bash
SRC="/Volumes/thunderbolt/iTunes/Music/"
DEST="/media/zilveren/music/"
rsync -avz -e ssh pi@raspberry:$DEST $SRC