Skip to content

Commit

Permalink
docs: update CLI docs
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Jul 16, 2024
1 parent f6a9973 commit 1c0273b
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions www/docs/cli/ipsw/dyld/str.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,27 @@ description: Search dyld_shared_cache for string
Search dyld_shared_cache for string

```
ipsw dyld str <DSC> [flags]
ipsw dyld str <DSC> [STRING...] [flags]
```

### Examples

```bash
# Perform FAST byte search for string in dyld_shared_cache
❯ ipsw dsc str DSC "string1"
# Perform FAST byte search for multiple strings in dyld_shared_cache
❯ ipsw dsc str DSC "string1" "string2"
# Perform FAST byte search for strings from stdin in dyld_shared_cache
❯ cat strings.txt | ipsw dsc str DSC
# Perform SLOW regex search for string in dyld_shared_cache
❯ ipsw dsc str DSC --pattern "REGEX_PATTERN"
```

### Options

```
-h, --help help for str
-p, --pattern string Regex match strings
-p, --pattern string Regex match strings (SLOW)
```

### Options inherited from parent commands
Expand Down

0 comments on commit 1c0273b

Please sign in to comment.