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


0.4
date	99.08.02.19.01.33;	author mhi;	state Exp;
branches;
next	0.3;

0.3
date	99.07.05.00.20.58;	author mhi;	state Exp;
branches;
next	;


desc
@This shell script gets the appindex.txt file from freshmeat.net/backend/
@


0.4
log
@*** empty log message ***
@
text
@#!/bin/sh
# $Id: getappindex,v 0.3 1999/07/05 00:20:58 mhi Exp root $
# This script fetchs appindex.txt from freshmeat

# Change this:
URL="http://freshmeat.net/backend/appindex.txt"
GET="lynx -source"
TXT="/usr/local/lib/appindex/appindex.txt"
TMP="/tmp/appindex.txt"
# stop!

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

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

rm $TMP
@


0.3
log
@First version
@
text
@d2 1
a2 1
# $Id$
@
