STRINGS.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. STRINGS(1)                Minix Programmer's Manual                 STRINGS(1)
  2. NAME
  3.      strings - print all the strings in a binary file
  4. SYNOPSIS
  5.      strings [-] [-o] [-n] file ...
  6. OPTIONS
  7.      -    search whole file, not just data seg
  8.      -o   Print octal offset of each string
  9.      -n   n is minimum length string (default = 4)
  10. EXAMPLES
  11.      strings -5 a.out    # Print the strings > 4 chars in a.out
  12.      strings - /bin/sh   # Search entire shell file (text and data)
  13. DESCRIPTION
  14.      Strings looks for sequences of ASCII characters followed by a zero  byte.
  15.      These  are  usually  strings.   This  program  is  typically used to help
  16.      identify unknown binary programs
  17.                                                                              1