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

操作系统开发

开发平台:

WINDOWS

  1. DD(1)                     Minix Programmer's Manual                      DD(1)
  2. NAME
  3.      dd - disk dumper
  4. SYNOPSIS
  5.      dd [option = value] ...
  6. EXAMPLES
  7.      dd if=/dev/fd0 of=/dev/fd1
  8.                          # Copy disk 0 to disk 1
  9.      dd if=x of=y bs=1w skip=4
  10.                          # Copy x to y, skipping 4 words
  11.      dd if=x of=y count=3
  12.                          # Copy three 512-byte blocks
  13. DESCRIPTION
  14.      This command is intended for copying partial files.  The block size, skip
  15.      count, and number of blocks to copy can be specified.  The options are:
  16.         if = file      - Input file (default is stdin)
  17.         of = file      - Output file (default is standard output)
  18.         ibs = n        - Input block size (default 512 bytes)
  19.         obs = n        - Output block size (default is 512 bytes)
  20.         bs = n         - Block size; sets ibs and obs (default is 512 bytes)
  21.         skip = n       - Skip n input blocks before reading
  22.         seek = n       - Skip n output blocks before writing
  23.         count = n      - Copy only n input blocks
  24.         conv = lcase   - Convert upper case letters to lower case
  25.         conv = ucase   - Convert lower case letters to upper case
  26.         conv = swab    - Swap every pair of bytes
  27.         conv = noerror - Ignore errors and just keep going
  28.         conv = silent  - Suppress statistics (Minix specific flag)
  29.      Where sizes are expected, they are in bytes.  However, the letters w,  b,
  30.      or  k  may  be appended to the number to indicate words (2 bytes), blocks
  31.      (512 bytes), or K (1024 bytes), respectively.  When dd  is  finished,  it
  32.      reports the number of full and partial blocks read and written.
  33. SEE ALSO
  34.      vol(1).
  35.                                                                              1