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

操作系统开发

开发平台:

WINDOWS

  1. OD(1)                     Minix Programmer's Manual                      OD(1)
  2. NAME
  3.      od - octal dump
  4. SYNOPSIS
  5.      od [-bcdhox] [file] [ [+] offset [.][b] ]
  6. OPTIONS
  7.      -b   Dump bytes in octal
  8.      -c   Dump bytes as ASCII characters
  9.      -d   Dump words in decimal
  10.      -h   Print addresses in hex (default is octal)
  11.      -o   Dump words in octal (default)
  12.      -v   Verbose (list duplicate lines)
  13.      -x   Dump words in hex
  14. EXAMPLES
  15.      od -ox file         # Dump file in octal and hex
  16.      od -d file +1000    # Dump file starting at byte 01000
  17.      od -c file +10.b    # Dump file starting at block 10
  18. DESCRIPTION
  19.      Od dumps a file in one or more formats.  If file  is  missing,  stdin  is
  20.      dumped.   The  offset argument tells od to skip a certain number of bytes
  21.      or blocks before starting.  The offset is in octal bytes,  unless  it  is
  22.      followed by a '.' for decimal or b for blocks or both.
  23.                                                                              1