sparrow/README.md

11 lines
275 B
Markdown
Raw Permalink Normal View History

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