home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / bin / sparc / newsgrps.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1992-05-11  |  2.2 KB  |  84 lines

  1. #!/bin/sh
  2. # $Id: newsgroups.SH,v 4.4.2.1 1991/12/01 18:05:42 sob PATCH_2 sob $
  3. # $Log: newsgroups.SH,v $
  4. # Revision 4.4.2.1  1991/12/01  18:05:42  sob
  5. # Patchlevel 2 changes
  6. #
  7. # Revision 4.4.1.1  1991/09/25  19:38:08  sob
  8. # various fixed
  9. #
  10. # Revision 4.4  1991/09/09  20:23:31  sob
  11. # release 4.4
  12. #
  13. # This software is Copyright 1991 by Stan Barber. 
  14. #
  15. # Permission is hereby granted to copy, reproduce, redistribute or otherwise
  16. # use this software as long as: there is no monetary profit gained
  17. # specifically from the use or reproduction of this software, it is not
  18. # sold, rented, traded or otherwise marketed, and this copyright notice is
  19. # included prominently in any copy made. 
  20. #
  21. # The author make no claims as to the fitness or correctness of this software
  22. # for any use whatsoever, and it is provided as is. Any use of this software
  23. # is at the user's own risk. 
  24.  
  25. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0; kill $$)
  26.  
  27. : syntax: newsgroups [pattern] [pipeflag]
  28.  
  29. : System Dependencies
  30.  
  31. : You might want to change pager to a "make column" program if you have one.
  32. : On the other hand, if your kernel does paging, cat would probably do.
  33. pager="/cdrom/bin/sparc/less.exe"
  34.  
  35.  
  36. active="/tmp/active.$$"
  37.  
  38. case $rnlib in
  39. ~*) rnlib=`/cdrom/lib/trn/filexp.sh $rnlib` ;;
  40. esac
  41.  
  42. : End of system dependencies, hopefully
  43.  
  44. if /cdrom/bin/sparc/getactiv.exe ACTIVE $active; then
  45.     true;
  46. else
  47.     exit 1;
  48. fi
  49.  
  50. if /bin/test $# -ge 2 ; then
  51.     pager=/bin/cat
  52. else
  53.     /bin/echo "Completely unsubscribed newsgroups:"
  54. fi
  55.  
  56. dotdir="$HOME/.news/$SPOOLDIR"
  57. newsrc="$dotdir/.newsrc"
  58.  
  59. : Throwing .newsrc into the pot twice is a lovely hack to prevent
  60. : bogus newsgroups from showing up as unsubscribed.
  61.  
  62. /bin/cat $newsrc $newsrc $active | \
  63. /bin/sed -n    -e '/^options/d' \
  64.     -e '/^[     ]/d' \
  65.     -e '/^control/d' \
  66.     -e '/^to\./d' \
  67.      -e '/ x$/d' \
  68.     -e 's/^\([^ !:]*\)[ !:].*$/\1/' \
  69.     -e "/.*$1/p" | \
  70. /bin/sort | /bin/uniq -u | $pager
  71. /bin/rm -f $active
  72. if /bin/test $# -ge 2 ; then
  73.     exit
  74. fi
  75. /bin/echo -n "[Type return to continue] "
  76. read tmp
  77. /bin/echo ""
  78. /bin/echo "Unsubscribed but mentioned in $newsrc:"
  79. /bin/sed -n < $newsrc \
  80.     -e "/$1.*!/"'s/^\([^!]*\)!.*$/\1/p' | \
  81. /bin/sort | $pager
  82.