summaryrefslogtreecommitdiffstats
path: root/bin/checkMissingLink
diff options
context:
space:
mode:
Diffstat (limited to 'bin/checkMissingLink')
-rwxr-xr-xbin/checkMissingLink13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/checkMissingLink b/bin/checkMissingLink
deleted file mode 100755
index 4b53f79..0000000
--- a/bin/checkMissingLink
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-file=$1
-id=$(echo "$file" | sed 's/.*\(.\{11\}\)\.ogg/\1/')
-
-if [ $id = '' ]; then
- echo 'no id'
- exit 23
-fi
-
-if ! grep -q -- "$id#" links; then
- echo $file
-fi