Created
May 5, 2016 05:14
-
-
Save Tosainu/be66bb9d0b34b28cb155a166a336f928 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "usage: $0 DEST" | |
exit -1 | |
fi | |
if [ ! -d $1 ]; then | |
echo "error: no such directory $1" | |
exit -1 | |
fi | |
rsync -vLrhPt --exclude '*nstrumental*' Music/ $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment