head	0.6;
access;
symbols;
locks
	root:0.6; strict;
comment	@# @;


0.6
date	2000.02.26.15.46.57;	author mhi;	state Exp;
branches;
next	0.5;

0.5
date	99.08.16.23.42.44;	author mhi;	state Exp;
branches;
next	;


desc
@Gets LSM.current file from LSM website / FTP directory
@


0.6
log
@Better LSM support
@
text
@#!/bin/sh
# $Id: fetchlsm,v 0.5 1999/08/16 23:42:44 mhi Exp root $
# This script downloads the LSM.current from ftp.execpc.com

# Change this:
URL="ftp://ftp.execpc.com/lsm/LSM.current.gz"
GET="lynx -source"
TXT="/var/lib/appindex/LSM.current.gz"
TMP="/var/lib/appindex/LSM.current.tmp"
# stop!

$GET $URL >$TMP 2>/dev/null

if [ $? = 0 ] ; then
 cp $TMP $TXT
fi

rm $TMP
@


0.5
log
@first version
@
text
@d2 1
a2 1
# $Id: getappindex,v 0.4 1999/08/02 19:01:33 mhi Exp root $
d9 1
a9 1
TMP="/tmp/LSM.current.tmp"
@
