aboutsummaryrefslogtreecommitdiffstats
path: root/texlive-flashcards/watch
diff options
context:
space:
mode:
Diffstat (limited to 'texlive-flashcards/watch')
-rwxr-xr-xtexlive-flashcards/watch21
1 files changed, 0 insertions, 21 deletions
diff --git a/texlive-flashcards/watch b/texlive-flashcards/watch
deleted file mode 100755
index cd655ff..0000000
--- a/texlive-flashcards/watch
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-[ -f flashcards ] && rm flashcards
-
-wget 'http://ctan.org/pkg/flashcards' -O flashcards >/dev/null 2>/dev/null
-
-if [ $? = 0 ]; then
- [ -f unfetchable ] && rm unfetchable
- grep 'Ver&shy;sion' < flashcards | md5sum > new-sum
- touch sum
- if [ "$(cat sum)" = "$(cat new-sum)" ]; then
- rm new-sum
- else
- mv new-sum sum
- echo 'texlive-flashcards'
- fi
-elif [ ! -f unfetchable ]; then
- touch unfetchable
- echo 'texlive-flashcards (unfetchable)'
-fi
-