home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / cmds / root.3 / usr / lib / sa / sa1 / sa1~
Text File  |  1998-08-19  |  846b  |  31 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    "@(#)sa:common/cmd/sa/sa1.sh    1.5.1.6"
  14. #ident "$Header: $"
  15.  
  16. # Privileges:    P_DEV
  17. # Restrictions:
  18. #        cd: none
  19.  
  20. priv -allprivs work
  21. DATE=`date +%d`
  22. ENDIR=/usr/lib/sa
  23. DFILE=/var/adm/sa/sa$DATE
  24. cd $ENDIR
  25. if [ $# = 0 ]
  26. then
  27.     exec $ENDIR/sadc 1 1 $DFILE
  28. else
  29.     exec $ENDIR/sadc $* $DFILE
  30. fi
  31.