source: main/trunk/greenstone3/web/list-installations.sh

Last change on this file was 38435, checked in by davidb, 6 months ago

Changed the wget check to be a sourced script

  • Property svn:executable set to *
File size: 307 bytes
Line 
1#!/bin/bash
2
3. ./_gs-wget-check.bash
4
5echo ""
6echo "GS3 Installations: "
7
8wget --no-check-certificate -q -O - https://svn.greenstone.org/gs3-installations/ | \
9 grep '<li>' | \
10 sed 's/^.*href="\(.*\)\/".*$/ \1/' | \
11 grep -v '\.\.' | \
12 grep -v 'README\.txt'
13
14
15# tr '\n' ' '
16
17echo ""
18
Note: See TracBrowser for help on using the repository browser.