sparrow/README.md

9 lines
258 B
Markdown
Raw Normal View History

2020-03-22 08:15:16 +00:00
# Sparrow
Bitcoin Transaction Editor
To clone this project, use `git clone --recursive git@github.com:craigraw/sparrow.git`
2020-03-28 08:45:39 +00:00
## Various ways to hex dump a file without spaces:
xxd -p file | tr -d '\n'
hexdump -ve '1/1 "%.2x"'
od -t x1 -An file | tr -d '\n '