Gnus development mailing list
 help / color / mirror / Atom feed
From: Manoj Srivastava <srivasta@datasync.com>
Subject: Re: idea.. check and grab new versions..?
Date: 21 Jan 1997 12:12:23 -0600	[thread overview]
Message-ID: <8720bekid4.fsf@tiamat.datasync.com> (raw)
In-Reply-To: Jan Vroonhof's message of 21 Jan 1997 17:02:10 +0100

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               <url:mailto:srivasta@acm.org>
Mobile, Alabama USA            <url:http://www.datasync.com/%7Esrivasta/>


  reply	other threads:[~1997-01-21 18:12 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-01-21 11:16 Andy Eskilsson
1997-01-21 11:56 ` Lars Balker Rasmussen
1997-01-21 15:21   ` Mark Boyns
1997-01-21 16:02     ` Jan Vroonhof
1997-01-21 18:12       ` Manoj Srivastava [this message]
1997-01-22  9:43       ` wget, was [Re: idea.. check and grab new versions..?] Jan Vroonhof
1997-01-21 17:50     ` idea.. check and grab new versions..? Scott Blachowicz
1997-01-21 18:35       ` Shannon F. Stewman
1997-01-22  0:39         ` Justin Sheehy
1997-01-21 21:06           ` Shannon F. Stewman
1997-01-22 16:00         ` William M. Perry
1997-01-21 20:34       ` Andrew J Cosgriff
1997-01-21 22:57       ` Lars Magne Ingebrigtsen
1997-01-22  3:46       ` Danny Siu
1997-01-21 15:57   ` visigoth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8720bekid4.fsf@tiamat.datasync.com \
    --to=srivasta@datasync.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).