You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
275 B

5 years ago
# Sparrow
5 years ago
Bitcoin Wallet & Transaction Editor
5 years ago
To clone this project, use `git clone --recursive git@github.com:craigraw/sparrow.git`
## Various ways to hex dump a file without spaces:
5 years ago
`xxd -p file | tr -d '\n'`
`hexdump -ve '1/1 "%.2x"'`
`od -t x1 -An file | tr -d '\n '`