From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9512 Path: main.gmane.org!not-for-mail From: Manoj Srivastava Newsgroups: gmane.emacs.gnus.general Subject: Re: idea.. check and grab new versions..? Date: 21 Jan 1997 12:12:23 -0600 Organization: Manoj Srivastava's Home Sender: srivasta@datasync.com Message-ID: <8720bekid4.fsf@tiamat.datasync.com> References: <199701211116.MAA28543@claymore.fukt.hk-r.se> <0fwwt71btp.fsf@fraxinus.daimi.aau.dk> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.100) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035149526 18960 80.91.224.250 (20 Oct 2002 21:32:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:32:06 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.4/8.8.4) with SMTP id KAA08712 for ; Tue, 21 Jan 1997 10:26:57 -0800 Original-Received: from tiamat.datasync.com (srivasta@tiamat.datasync.com [205.216.83.252]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Tue, 21 Jan 1997 19:12:31 +0100 Original-Received: (from srivasta@localhost) by tiamat.datasync.com (8.8.4/8.8.4) id MAA23931; Tue, 21 Jan 1997 12:12:26 -0600 X-Time: Tue Jan 21 12:12:18 1997 X-Mail-System: Vm 5.95 (beta) for GNU Emacs 19.34.1 Original-To: ding@ifi.uio.no In-Reply-To: Jan Vroonhof's message of 21 Jan 1997 17:02:10 +0100 Original-Lines: 70 X-Mailer: Red Gnus v0.82/Emacs 19.34 Xref: main.gmane.org gmane.emacs.gnus.general:9512 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9512 Hi, If we are into displaying my-auto-gnues-getter, here's my entry: -------------------------------------------------------------------- #! /bin/bash # -*- Mode: Sh -*- # mkgnus --- # Author : Manoj Srivastava ( srivasta@tiamat.datasync.com ) # Created On : Wed Nov 20 21:21:29 1996 # Created On Node : tiamat.datasync.com # Last Modified By : Manoj Srivastava # Last Modified On : Wed Nov 20 21:49:03 1996 # Last Machine Used: tiamat.datasync.com # Update Count : 8 # Status : Unknown, Use with caution! # HISTORY : # Description : # # set -x set -e GETFILE=1; FILE="/tmp/rgnus.tar.gz"; case $1 in -f) GETFILE=0; if [ "X$2" = "X" ]; then echo The option -f needs an argument; exit 1; fi FILE=$2; if [ ! -f $FILE ]; then echo The argument "$2" for the -f option needs to be a file exit 1; fi if ! echo $FILE | grep '^/' ; then FILE=`pwd`/"$FILE"; fi shift; ;; *) esac if [ $GETFILE -gt 0 ]; then if [ -f $FILE ]; then rm -f "$FILE.sav" mv $FILE "$FILE.sav" fi lynx -dump 'http://www.ifi.uio.no/~larsi/rgnus.tar.gz' > $FILE fi cd /usr/local/lib/emacs/site-lisp/ rm -rf gnus rgnus-* tar zvvfx $FILE ln -s rgnus-* gnus cd gnus make rm -f $FILE ---------------------------------------------------------------------- manoj -- "May your future be limited only by your dreams." Christa McAuliffe Manoj Srivastava Mobile, Alabama USA