summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2016-06-02 11:34:13 +0200
committerlassulus <lass@aidsballs.de>2016-06-02 11:34:13 +0200
commit50e784251490a1a845347ca5c8a8aef9888b301b (patch)
treed70efef9b3b61a6f239e64c706634c39ecd86645
parent2307e2f152e46ffb143c6942d480c2221d1a2bec (diff)
add make drycopy
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f348b87..e60a21f 100644
--- a/Makefile
+++ b/Makefile
@@ -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