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

Last change on this file since 37163 was 37035, checked in by davidb, 18 months ago

Helper scripts to make it easier to check out a gs3-installation's interface and/or site

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