1
0
mirror of https://github.com/DazAh/dotfiles synced 2026-05-21 18:25:46 +01:00

renamed: executable_dot_musicsync.sh -> executable_dot_musicsync.sh.tmpl

This commit is contained in:
DazAh
2019-10-13 01:56:36 +01:00
parent f04f217939
commit 1a963b112b
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/sh
#Rsync Music from server to local HDD.
rsync -azhP --info=progress2 --stats "{{ .musicsyncpath }}" /mnt/HDD2/Music -s --delete
if [ $? -eq 0 ]; then
echo "Sync Complete"
else
echo "Sync Failed!"
fi