You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cli: read data from stdin if no '-i' argument is given
This is especially useful for binary data, which may not survive in an argument
list (e.g. due to the presence of NUL bytes).
The 'encode' and 'decode' commands are now exact inverses of each other, so data
will roundtrip correctly, e.g.
$ echo "hello world" | ./multibase encode | ./multibase decode
hello world
$ echo "hello world" | ./multibase encode | ./multibase decode | ./multibase encode
z2yGEbwRFyhPZZckJm
$ echo "hello world" | ./multibase encode
z2yGEbwRFyhPZZckJm
0 commit comments