diff options
author | lassulus <lass@aidsballs.de> | 2016-06-02 11:34:13 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-06-02 11:34:13 +0200 |
commit | 50e784251490a1a845347ca5c8a8aef9888b301b (patch) | |
tree | d70efef9b3b61a6f239e64c706634c39ecd86645 | |
parent | 2307e2f152e46ffb143c6942d480c2221d1a2bec (diff) |
add make drycopy
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -39,5 +39,9 @@ copy: ## make copy dest="/mnt/tmp/music" copy: ## to copy music to dest rsync -vrltD --delete --ignore-existing --exclude=.graveyard ./music/ ${dest} +drycopy: ## make drycopy dest="/mnt/tmp/music" +drycopy: ## to dryrun copy music to dest (for finding deleted files etc.) + rsync -vrltD --delete --ignore-existing --exclude=.graveyard ./music/ ${dest} + convert2mp3: ## converts stuff from ./music to ./mp3 ls music/* | target=./mp3 xargs -n1 bin/ogg2mp3 |