Registered by nickey

Just a simple utility to show binary dump instead of hex dump that I needed and writen to view my eeprom images for microcontrollers. May be it would be useful for somebody, I using it sometimes and it make what it should make.

# Binary dump utility

This is small and simple utility to view binary dumps of any
files you need. I needed it for viewing eeprom-images for my
avr-microcontrollers projects. May be it would be useful for
some of your purposes, either way I publishing it here.

Features:

- Show sets of bytes in binary presentation
- Skipping variable bytes from start(by args)
- Shows variable count of bytes(by args)
- Shows hexadecimal bytes values
- Shows ascii bytes values
- Shows offsets for easier file navigation
- Use stdin and stdout, so you can easily send and save any
  data you need

## How to install
$ git clone https://github.com/inickey/bindump && cd bindump
$ make
$ sudo make install

If you using Ubuntu GNU/Linux, you can install this software
from my ppa, it'll be faster and easier

$ sudo add-apt-repository ppa:inickey/ppa
$ sudo apt-get update
$ sudo apt-get install bindump

## How to use it?

# Dump the file
$ bindump my_file.bin

# Dump the stdin
$ cat my_file.bin | bindump

# Use pager for big files
$ cat my_big_file.bin | bindump | less

To configure output you can use this flags:
-s [count] Skips count of bytes from the start
-l [count] Sets the length of bytes to show
-c [count] Sets the count of bytes to show in one line
-A Turn on the ASCII values near the binaries
                like 001110010[r]
-H Turn on the hex values near the binaries
-D Turn on the decimal values near the binaries
-S Do not split bytes, show all together
-o Turn on offsets in start of each line
-a Turn on the ASCII values in ending of each line
-v Shows version
-h Shows help

Project information

Maintainer:
nickey
Driver:
nickey
Licence:
GNU GPL v3

RDF metadata

View full history Series and milestones

trunk series is the current focus of development.

All code Code

Version control system:
Bazaar
Programming languages:
C

Get Involved

  • warning
    Report a bug
  • warning
    Ask a question
  • warning
    Help translate

Downloads

bindump does not have any download files registered with Launchpad.