Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have created a .db file using Berkeley DB using C. I want to view the contents inside the .db file. How to achieve this when I ahve no GUI on a linux machine?

share|improve this question
It'd just be binary garbage with the occasional string in it, but you can vi the file directly, or use od to dump it out in somewhat more readable hexdump format. – Marc B Aug 22 '11 at 21:18
Not having a GUI, usually makes thing easier; not more difficult as you seem to imply. Just read the data (using get) and printf it. – pmg Aug 22 '11 at 21:18

1 Answer

This question explains:

Examining Berkeley DB files from the CLI

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.