Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • I see. The reasons why I'm using strings is that, I don't get the offset when I use this line: "grep -o -b -U EXTH Agent_of_Change.mobi" Commented Apr 3, 2014 at 13:49
  • I just get Binary file Agent_of_Change.mobi matches, but I don't get the offset Commented Apr 3, 2014 at 13:50
  • Yup - grep is protecting you from seeing binary characters and that also is removing the chance for it to tell you the offset of what you already know is a text safe string. You'll likely need a different grep or a different tool to find that offset. Commented Apr 3, 2014 at 14:05