home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / bin / mips / newsetup.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1992-05-11  |  2.6 KB  |  112 lines

  1. #!/bin/sh
  2. #
  3. # $Id: newsetup.SH,v 4.4.2.1 1991/12/01 18:05:42 sob PATCH_2 sob $
  4. # $Log: newsetup.SH,v $
  5. # Revision 4.4.2.1  1991/12/01  18:05:42  sob
  6. # Fixed problems with CTRLA flag.
  7. #
  8. # Revision 4.4.1.2  1991/11/09  20:54:14  sob
  9. # Changes from eggert@twinsun.com to get rid of old code.
  10. #
  11. # Revision 4.4.1.1  1991/09/25  19:38:08  sob
  12. # various fixed
  13. #
  14. # Revision 4.4  1991/09/09  20:23:31  sob
  15. # release 4.4
  16. #
  17. #
  18. # This software is Copyright 1991 by Stan Barber. 
  19. #
  20. # Permission is hereby granted to copy, reproduce, redistribute or otherwise
  21. # use this software as long as: there is no monetary profit gained
  22. # specifically from the use or reproduction of this software, it is not
  23. # sold, rented, traded or otherwise marketed, and this copyright notice is
  24. # included prominently in any copy made. 
  25. #
  26. # The author make no claims as to the fitness or correctness of this software
  27. # for any use whatsoever, and it is provided as is. Any use of this software
  28. # is at the user's own risk. 
  29.  
  30. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0; kill $$)
  31.  
  32. : syntax: newsetup
  33.  
  34. : System dependencies
  35. : You will want to change the definitions below to reflect the distribution
  36. : areas around you.  If you have more areas than this you will need to modify
  37. : the sed below.
  38.  
  39. locorg="none"
  40. organization="none"
  41. city="none"
  42. state="none"
  43. cntry="none"
  44. cont="none"
  45. active="/tmp/active.$$"
  46.  
  47. dotdir="$HOME/.news/$SPOOLDIR"
  48. newsrc="$dotdir/.newsrc"
  49. /bin/rm -f $newsrc-old
  50. /bin/echo "Creating $newsrc to be used by news programs."
  51. rnlib=/cdrom/lib/trn
  52. case $rnlib in
  53. ~*) rnlib=`/cdrom/lib/trn/filexp.sh $rnlib` ;;
  54. esac
  55. if /cdrom/bin/mips/getactiv.exe ACTIVE $active; then
  56.     true;
  57. else
  58.     exit 1;
  59. fi
  60.  
  61. if /bin/test -s $newsrc ; then
  62.     /bin/echo "Saving your current $newsrc as $newsrc-old..."
  63.     /bin/mv -f $newsrc $newsrc-old
  64. fi
  65.  
  66. : newsrc order determined here
  67.  
  68. /bin/sed <$active '
  69.     /^to\./d
  70.     / [^mny][^ ]*$/d
  71.     s/ .*//
  72.     s/^/ /
  73.     s/^ '$locorg'\./01&/
  74.     s/^ '$organization'\./02&/
  75.     s/^ '$city'\./03&/
  76.     s/^ '$state'\./04&/
  77.     s/^ '$cntry'\./05&/
  78.     s/^ '$cont'\./06&/
  79.     s/^ news\./07&/
  80.     s/^ comp\./08&/
  81.     s/^ sci\./09&/
  82.     s/^ rec\./10&/
  83.     s/^ soc\./11&/
  84.     s/^ talk\./13&/
  85.     s/^ control$/14&/
  86.     s/^ junk$/14&/
  87.     s/^ test$/14&/
  88.     /\.test$/s/^[0-9]*/14/
  89.     s/^ .*\./12&/
  90.     s/^ /00&/
  91. ' |
  92. /usr/bin/sort -u |
  93. /bin/sed '
  94.     /^14 /!s/$/:/
  95.     /^14 /s/$/!/
  96.     s/^[0-9][0-9] //
  97. ' >$newsrc
  98.  
  99. /bin/rm -f $active
  100.  
  101. /bin/cat <<'EOH'
  102. Done.
  103.  
  104. If you have never used the news system before, you may find the articles
  105. in news.announce.newusers to be helpful.  There is also a manual entry for rn.
  106.  
  107. To get rid of newsgroups you aren't interested in, use the 'u' command.
  108. Type h for help at any time while running rn.
  109. EOH
  110.