Skip to content

Commit a6bc007

Browse files
committed
Update
1 parent 2a6de01 commit a6bc007

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ This was the original use of Aces (it was called `ha`, increased data size by 4X
1818

1919
If you're on macOS, you can even convert that output to speech:
2020
```shell
21-
$ echo -n "Matthew Stanciu" | aces HhAa | say
21+
echo -n "Matthew Stanciu" | aces HhAa | say
2222
```
2323

2424
With Aces, you can see the actual 0s and 1s of files:
2525
```shell
26-
$ aces 01 < $(which echo)
26+
aces 01 < $(which echo)
2727
```
2828
You can also write hex/octal/binary/your own format by hand:
2929
```shell
30-
$ echo C2A7 | aces -d 0123456789ABCDEF
31-
$ echo .+=. | aces -d ./+= # try this!
30+
echo C2A7 | aces -d 0123456789ABCDEF
31+
echo .+=. | aces -d ./+= # try this!
3232
```
3333
Convert binary to hex:
3434
```shell
35-
$ echo 01001010 | aces -d 01 | aces 0123456789ABCDEF
35+
echo 01001010 | aces -d 01 | aces 0123456789ABCDEF
3636
```
3737

3838
_Also check out the examples!_

0 commit comments

Comments
 (0)