From fc5a688646870f7d352ccd2103e625a1a288b6af Mon Sep 17 00:00:00 2001 From: bill-auger Date: Tue, 13 Feb 2018 13:14:17 -0500 Subject: [find_fsd_pages]: add fsd search script --- find_fsd_pages | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 find_fsd_pages (limited to 'find_fsd_pages') diff --git a/find_fsd_pages b/find_fsd_pages new file mode 100755 index 0000000..31a9641 --- /dev/null +++ b/find_fsd_pages @@ -0,0 +1,24 @@ +#!/bin/bash + + +readonly WIKI_BASE_URL=https://directory.fsf.org/wiki +readonly BLACKLIST_URL=https://git.parabola.nu/blacklist.git/plain +readonly BLACKLIST_FILE=blacklist.txt + + +wget $BLACKLIST_URL/$BLACKLIST_FILE +[ ! -f ./$BLACKLIST_FILE ] && echo "download failed" && exit 1 + + +readonly PACKAGES=$(grep '^\s*[^:#]*:.*' ./$BLACKLIST_FILE | \ + sed 's/^\s*\([^:#]*\):.*/\1/ ; s/^./\U&/g ; s/-./\U&/g ; s/-/_/g') + +for package in $PACKAGES +do status=$(curl -s -o /dev/null -w "%{http_code}" $WIKI_BASE_URL/$package) + if [ "$status" == '200' ] + then echo "$package entry exists" + elif [ "$status" == '404' -o "$status" == '301' ] + then echo "$package entry not found" + else echo "$package unknown response" + fi +done -- cgit v1.2.2