diff options
author | lassulus <lass@aidsballs.de> | 2015-08-23 16:05:09 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-08-23 16:05:09 +0200 |
commit | 0f7433691efe4b1f90587439fe59428bfa6b82fb (patch) | |
tree | 7629c910c3bde129f1327dea6773135f076a2ad7 | |
parent | 4b8b1d250f4cb1ddfe512054e824736c472479f3 (diff) |
add missing song check
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | bin/checkMissing | 9 |
2 files changed, 13 insertions, 0 deletions
@@ -7,3 +7,7 @@ download: ## download all links to ./music add: ##make add url="http://youtube..." add: ##to add link to ./links bin/youtplaylist ${url} >> links + +check: ## check for missing songs +check: ## make download should be run first + cat links | musicDir=./music xargs -n1 bin/checkMissing diff --git a/bin/checkMissing b/bin/checkMissing new file mode 100755 index 0000000..16cb477 --- /dev/null +++ b/bin/checkMissing @@ -0,0 +1,9 @@ +#!/bin/sh + +uri=$1 +musicDir=${musicDir-./} +id=$(echo "$uri" | sed -n 's@^https\?://www\.youtube\.com/watch?v=@@p' | sed 's/#.*$//') + +if ! file=$(find $musicDir | grep -q "[-]$id\\.ogg\$"); then + echo $uri +fi |