Skip to content

Instantly share code, notes, and snippets.

@Tosainu
Created May 5, 2016 05:14
Show Gist options
  • Save Tosainu/be66bb9d0b34b28cb155a166a336f928 to your computer and use it in GitHub Desktop.
Save Tosainu/be66bb9d0b34b28cb155a166a336f928 to your computer and use it in GitHub Desktop.
#!/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