Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,19 +1,19 @@
# strings
> Find printable strings in an object file or binary
> Find printable strings in an object file or binary.
- Print all strings in a binary
- Print all strings in a binary:
`strings {{file}}`
- Limit results to strings at least *length* characters long
- Limit results to strings at least *length* characters long:
`strings -n {{length}} {{file}}`
- Prefix each result with its offset within the file
- Prefix each result with its offset within the file:
`strings -t d {{file}}`
- Prefix each result with its offset within the file in hexadecimal
- Prefix each result with its offset within the file in hexadecimal:
`strings -t x {{file}}`