source: trunk/gli/Header@ 4833

Last change on this file since 4833 was 4797, checked in by jmt12, 21 years ago

Its about time I added this file to cvs. I've also fixed it (with John M's help) so that it is more multiplatform.

  • Property svn:keywords set to Author Date Id Revision
File size: 410 bytes
Line 
1#!/bin/sh
2echo ""
3echo "Greenstone Librarian Interface v2.3(beta) - starting installation... please wait"
4echo ""
5
6# Figure out where the TGZ portion starts
7SKIP=`awk '/^__ARCHIVE_FOLLOWS__/ { print NR + 1; exit 0; }' $0`
8
9# Take the TGZ portion of this file and pipe it to tar.
10tail +$SKIP $0 | gzip -d -c | tar -xf -
11
12# execute the installation script
13
14cd ./gli/
15sh ./Install.sh
16
17exit 0
18
19__ARCHIVE_FOLLOWS__
Note: See TracBrowser for help on using the repository browser.