DOSDIR.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. DOSDIR(1)                 Minix Programmer's Manual                  DOSDIR(1)
  2. NAME
  3.      dosdir - list an MS-DOS directory [IBM]
  4. SYNOPSIS
  5.      dosdir [-lr] drive
  6. OPTIONS
  7.      -l   Long listing
  8.      -r   Recursively descend and print subdirectories
  9. EXAMPLES
  10.      dosdir -l A         # List root directory on drive A
  11.      dosdir -r C x/y     # Recursively list directory x/y
  12.      dosdir -r fd1       # List device /dev/fd1
  13. DESCRIPTION
  14.      Dosdir reads standard IBM PC diskettes or hard disk partitions in  MS-DOS
  15.      format  and  lists  their  contents  on standard output.  Directory names
  16.      should contain slashes to separate components, even  though  MS-DOS  uses
  17.      backslashes.   The names dosdir , dosread , and doswrite are all links to
  18.      the same program.  The program sees which function to perform  by  seeing
  19.      how  it  was  called.   A  drive  code  of  A  causes  the program to use
  20.      /dev/dosA, for example, a link to /dev/fd0.  Similarly, to have hard disk
  21.      partition 1 be DOS drive C, /dev/dosC could be a link to /dev/hd1, and so
  22.      on for other drive codes.  A normal device name may also be used  instead
  23.      of a drive code.
  24.                                                                              1