home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / cmds / root.3 / usr / share / lib / spell / compress / compress~
Text File  |  1998-08-19  |  970b  |  22 lines

  1. #!/sbin/sh
  2.  
  3. # Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  4. #                                                                         
  5. #        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  6. #                   SANTA CRUZ OPERATION INC.                             
  7. #                                                                         
  8. #   The copyright notice above does not evidence any actual or intended   
  9. #   publication of such source code.                                      
  10.  
  11. #    copyright    "%c%"
  12.  
  13. #ident    "@(#)spell:compress.sh    1.3.1.3"
  14. #ident "$Header: /sms/sinixV5.4es/rcs/s19-full/usr/src/cmd/spell/compress.sh,v 1.1 91/02/28 20:09:57 ccs Exp $"
  15. #    compress - compress the spell program log
  16.  
  17. trap 'rm -f /usr/tmp/spellhist;exit' 1 2 3 15
  18. echo "COMPRESSED `date`" > /usr/tmp/spellhist
  19. grep -v ' ' /var/adm/spellhist | sort -fud >> /usr/tmp/spellhist
  20. cp /usr/tmp/spellhist /var/adm
  21. rm -f /usr/tmp/spellhist
  22.