mirror of https://github.com/dirtbags/fluffy.git
9 lines
148 B
Plaintext
9 lines
148 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
## Hex dums all octets
|
||
|
## Sort of like "man ascii"
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
for i in $(seq 0 255); do printf "%02x" $i; done | ./unhex | ./hd
|