home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d7xx / d747 / aush.lha / AUSH / ExtraCmds.lha / englishdocs / strings.doc < prev    next >
Text File  |  1992-09-04  |  804b  |  30 lines

  1. NAME
  2.     strings - find the printable strings in a binary file
  3.  
  4. SYNOPSIS
  5.     strings [ -o ] [ -number ] [ file ... ]
  6.  
  7. DESCRIPTION
  8.     strings looks for ascii strings in a binary file.  A string is any
  9.     sequence of 4 or more printing characters ending with a null.
  10.     If the -o flag is given, then each string is preceded by its offset
  11.     in the file (in hexadecimal).  If the -number flag is given then
  12.     number is used as the minimum string length rather than 4.
  13.  
  14.     If no file is specified, or - is specified as a file, standard
  15.     input will be used.
  16.  
  17. RETURN CODES
  18.     0 if all went well
  19.     1 in case of bad arguments (fatal)
  20.     2 if at least one file couldn't be opened (non fatal)
  21.  
  22. CHANGES FROM UNIX
  23.     -a and - options not supported
  24.     offset in hexadecimal (instead of octal)
  25.  
  26. AUTHOR
  27.     Denis GOUNELLE
  28.     Last modified 04-Sep-92
  29.  
  30.