1STRINGS(1) General Commands Manual STRINGS(1)
2
3
4
6 strings - find the printable strings in a object, or other binary, file
7
9 strings [ - ] [ -o ] [ -number ] file ...
10
12 Strings looks for ascii strings in a binary file. A string is any
13 sequence of 4 or more printing characters ending with a newline or a
14 null. Unless the - flag is given, strings only looks in the initial‐
15 ized data space of object files. If the -o flag is given, then each
16 string is preceded by its offset in the file (in octal). If the -num‐
17 ber flag is given then number is used as the minimum string length
18 rather than 4.
19
20 Strings is useful for identifying random object files and many other
21 things.
22
24 od(1)
25
27 The algorithm for identifying strings is extremely primitive.
28
29
30
313rd Berkeley Distribution May 12, 1986 STRINGS(1)