home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / rn_4_3_blars.lzh / manifake < prev    next >
Text File  |  1990-08-22  |  458b  |  19 lines

  1. #!/bin/sh
  2. # $Header: manifake,v 4.3 85/05/01 11:42:41 lwall Exp $
  3. #
  4. # $Log:    manifake,v $
  5. # Revision 4.3  85/05/01  11:42:41  lwall
  6. # Baseline for release with 4.3bsd.
  7.  
  8. : make MANIFEST and MANIFEST.new say the same thing
  9. if test ! -f MANIFEST.new; then
  10.     if test -f MANIFEST; then
  11.     sed <MANIFEST >MANIFEST.new \
  12.         -e '1,/---/d' \
  13.         -e 's/\([     ][     ]*\)[0-9]*  */\1/'
  14.     else
  15.     echo "Make a MANIFEST.new file, with names and descriptions."
  16.     fi
  17. fi
  18.