home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2427 / README < prev   
Text File  |  1991-01-01  |  962b  |  25 lines

  1. coffdate is something I whipped up quickly to solve several problems:
  2.  
  3.     1) dates on executable files being altered by "install" scripts
  4.     2) verifying which of several *.o files was, in fact, most recent
  5.  
  6. From the program's docs:
  7.  
  8. displays the date embedded in COFF files and optionally alters the
  9. files' access and modify dates to be that of their COFF f_timdat.
  10.  
  11. usage:    coffdate  [ -a ]  [ -m ]  [ - { c | s } ]  filelist
  12.  
  13. where:    -a    resets file's access date&time to the COFF f_timdat
  14.     -m    resets file's modify date&time to the COFF f_timdat
  15.     -c    list only COFF files (i.e. suppress "not a COFF file")
  16.     -s    silent operation
  17.  
  18. options may be combined noting that -c and -s are mutually exclusive.
  19.  
  20. This version is for mc68k COFF files; to function with other systems'
  21. COFF files the equates in chkCOFF() need to be changed to reflect those
  22. in /usr/include/sgs.h or /usr/include/filehdr.h on those other systems.
  23.  
  24. V1.0    30-Dec-1990, Thad Floryan (thad@cup.portal.com)
  25.