#!/bin/bash

. ./_gs-wget-check.bash

echo ""
echo "GS3 Installations: "

wget --no-check-certificate -q -O - https://svn.greenstone.org/gs3-installations/ | \
    grep '<li>' | \
    sed 's/^.*href="\(.*\)\/".*$/  \1/' | \
    grep -v '\.\.' | \
    grep -v 'README\.txt'


#     tr '\n' ' '    

echo ""

