Unix and Linux Discussions Tagged with strings |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
6,753 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,663 |
Shell Programming and Scripting |
|
|
|
1 |
3,492 |
UNIX for Beginners Questions & Answers |
|
|
|
18 |
8,766 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
6,306 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
11,388 |
Shell Programming and Scripting |
|
|
|
5 |
4,185 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,284 |
Shell Programming and Scripting |
|
|
|
7 |
2,632 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
7,285 |
Shell Programming and Scripting |
|
|
|
7 |
13,027 |
Ubuntu |
|
|
|
9 |
9,175 |
Shell Programming and Scripting |
|
|
|
6 |
2,357 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,560 |
Shell Programming and Scripting |
|
|
|
8 |
2,910 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,522 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
7,275 |
Shell Programming and Scripting |
|
|
|
1 |
7,873 |
Shell Programming and Scripting |
|
|
|
5 |
4,548 |
Shell Programming and Scripting |
|
|
|
6 |
1,957 |
Shell Programming and Scripting |
|
|
|
1 |
4,722 |
Homework & Coursework Questions |
|
|
|
17 |
5,014 |
Shell Programming and Scripting |
|
|
|
1 |
11,327 |
FAQ Submission Queue |
|
|
|
5 |
5,535 |
Homework & Coursework Questions |
|
|
|
4 |
2,618 |
Shell Programming and Scripting |
|
|
|
2 |
2,442 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,044 |
Shell Programming and Scripting |
|
|
|
1 |
16,823 |
Programming |
|
|
|
12 |
13,098 |
Programming |
|
|
|
7 |
5,235 |
Shell Programming and Scripting |
|
|
|
2 |
2,405 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
7,027 |
Solaris |
|
|
|
3 |
6,942 |
Shell Programming and Scripting |
|
|
|
2 |
2,020 |
Shell Programming and Scripting |
|
|
|
1 |
6,363 |
Shell Programming and Scripting |
|
|
|
1 |
2,186 |
Shell Programming and Scripting |
|
|
|
1 |
7,702 |
Shell Programming and Scripting |
|
|
|
1 |
4,486 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
23,973 |
Shell Programming and Scripting |
|
|
|
1 |
6,168 |
Shell Programming and Scripting |
STRINGS(1) General Commands Manual STRINGS(1)
NAME
strings - find the printable strings in a object, or other binary, file
SYNOPSIS
strings [ - ] [ -a ] [ -o ] [ -number ] [file ...]
DESCRIPTION
Strings looks for ASCII strings in a binary file or standard input. Strings is useful for identifying random object files and many other
things. A string is any sequence of 4 (the default) or more printing characters ending with a newline or a null. Unless the - flag is
given, strings looks in all sections of the object files except the (__TEXT,__text) section. If no files are specified standard input is
read.
The options to strings(1) are:
-a This option causes strings to look for strings in all sections of the object file (including the (__TEXT,__text) section.
- This option causes strings to look for strings in all bytes of the files (the default for non-object files).
-o Preceded each string by its offset in the file (in decimal).
-number
The decimal number is used as the minimum string length rather than the default of 4.
SEE ALSO
od(1)
BUGS
The algorithm for identifying strings is extremely primitive.
Apple Computer, Inc. October 23, 1997 STRINGS(1)