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

Last change on this file since 37480 was 37292, checked in by davidb, 16 months ago

Check to avoid complication of trying to use Greenstone's WGETRC config file, while it is still in the process of compiling up all the source code, and so the wget that has been found is not the one in Greenstone, and the config files in WGETRC do not yet exist

  • Property svn:executable set to *
File size: 729 bytes
Line 
1#!/bin/bash
2
3if [ "x$WGETRC" != "x" ] ; then
4
5 wgetrc_dir=${WGETRC%/*}
6
7 which_wget=`which wget`
8 wget_dir=${which_wget%/*}
9
10 if [ $wgetrc_dir != $wget_dir ] ; then
11 echo "+--------" >&2
12 echo "+ Located wget is not the Greenstone one" >&2
13 echo "+ Temporarily setting:" >&2
14 echo "+ WGETRC=$WGETRC" >&2
15 echo "+ to be empty" >&2
16 echo "+--------" >&2
17 export WGETRC=
18 fi
19fi
20
21echo ""
22echo "GS3 Installations: "
23
24wget --no-check-certificate -q -O - https://svn.greenstone.org/gs3-installations/ | \
25 grep '<li>' | \
26 sed 's/^.*href="\(.*\)\/".*$/ \1/' | \
27 grep -v '\.\.' | \
28 grep -v 'README\.txt'
29
30
31# tr '\n' ' '
32
33echo ""
34
Note: See TracBrowser for help on using the repository browser.