home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnudosck.zip / README < prev   
Text File  |  1993-05-31  |  1KB  |  36 lines

  1. NOTICE: The OS/2 version of doschk requires the EMX runtime
  2. libraries.  See the files emxruntm.doc and emxruntm.zip
  3. contained in this archive.
  4.  
  5. doschk - check filenames for DOS (and SYSV) compatibility
  6.  
  7. This program is intended as a utility to help software developers
  8. ensure that their source file names are distinguishable on MS-DOS and
  9. 14-character SYSV platforms.  To perform this task, doschk reads a
  10. list of filenames and produces a report of all the conflicts that
  11. would arise if the files were transferred to a MS-DOS or SYSV
  12. platform.
  13.  
  14. To use this program, you must feed it a list of filenames in this
  15. format:
  16.  
  17.     dir
  18.     dir/file1.ext
  19.     dir/file2.exe
  20.     dir/dir2
  21.     dir/dir2/file3.ext
  22.  
  23. If the list does not include the directory-only lines (like dir/dir2)
  24. then their names will not be checked for uniqueness, else they will
  25. be.  Typical uses of this program are like these:
  26.  
  27.     find . -print | doschk
  28.     tar tf file.tar | doschk
  29.  
  30. If this program produces no output, then all your files are MS-DOS
  31. compatible.  Any output messages are designed to be self-explanatory
  32. and indicate cases where the files will not transfer to MS-DOS without
  33. problems.
  34.  
  35. Please report bugs to bug-gnu-utils@prep.ai.mit.edu. 
  36.