Last active
November 2, 2016 14:17
-
-
Save cwardzala/975a261d0187d7a23ea6badb28c431d9 to your computer and use it in GitHub Desktop.
Music Scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rsync --progress --ignore-existing -avzu --exclude=".*/" "/Users/cwardzala/Music/iTunes/iTunes Media/Music" "/Volumes/Shared Media/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
declare -a ARRAY=("/Volumes/Green Skull" "/Volumes/Shared Media") | |
rsync --progress --ignore-existing -avzu --exclude=".*/" "$HOME/Music/iTunes/iTunes Media/Music" "${ARRAY[$1]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment