home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # $Id: newsgroups.SH,v 4.4.2.1 1991/12/01 18:05:42 sob PATCH_2 sob $
- #
- # $Log: newsgroups.SH,v $
- # Revision 4.4.2.1 1991/12/01 18:05:42 sob
- # Patchlevel 2 changes
- #
- # Revision 4.4.1.1 1991/09/25 19:38:08 sob
- # various fixed
- #
- # Revision 4.4 1991/09/09 20:23:31 sob
- # release 4.4
- #
- #
- # This software is Copyright 1991 by Stan Barber.
- #
- # Permission is hereby granted to copy, reproduce, redistribute or otherwise
- # use this software as long as: there is no monetary profit gained
- # specifically from the use or reproduction of this software, it is not
- # sold, rented, traded or otherwise marketed, and this copyright notice is
- # included prominently in any copy made.
- #
- # The author make no claims as to the fitness or correctness of this software
- # for any use whatsoever, and it is provided as is. Any use of this software
- # is at the user's own risk.
-
- export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh $0; kill $$)
-
- : syntax: newsgroups [pattern] [pipeflag]
-
- : System Dependencies
-
- : You might want to change pager to a "make column" program if you have one.
- : On the other hand, if your kernel does paging, cat would probably do.
- pager="/cdrom/bin/sparc/less.exe"
-
-
- active="/tmp/active.$$"
-
- case $rnlib in
- ~*) rnlib=`/cdrom/lib/trn/filexp.sh $rnlib` ;;
- esac
-
- : End of system dependencies, hopefully
-
- if /cdrom/bin/sparc/getactiv.exe ACTIVE $active; then
- true;
- else
- exit 1;
- fi
-
- if /bin/test $# -ge 2 ; then
- pager=/bin/cat
- else
- /bin/echo "Completely unsubscribed newsgroups:"
- fi
-
- dotdir="$HOME/.news/$SPOOLDIR"
- newsrc="$dotdir/.newsrc"
-
- : Throwing .newsrc into the pot twice is a lovely hack to prevent
- : bogus newsgroups from showing up as unsubscribed.
-
- /bin/cat $newsrc $newsrc $active | \
- /bin/sed -n -e '/^options/d' \
- -e '/^[ ]/d' \
- -e '/^control/d' \
- -e '/^to\./d' \
- -e '/ x$/d' \
- -e 's/^\([^ !:]*\)[ !:].*$/\1/' \
- -e "/.*$1/p" | \
- /bin/sort | /bin/uniq -u | $pager
- /bin/rm -f $active
- if /bin/test $# -ge 2 ; then
- exit
- fi
- /bin/echo -n "[Type return to continue] "
- read tmp
- /bin/echo ""
- /bin/echo "Unsubscribed but mentioned in $newsrc:"
- /bin/sed -n < $newsrc \
- -e "/$1.*!/"'s/^\([^!]*\)!.*$/\1/p' | \
- /bin/sort | $pager
-