Skip to content

Commit a6101d4

Browse files
authored
README: Add bit decoding (#7)
Add bit decoding
1 parent dbb8c18 commit a6101d4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Go Report Card](https://goreportcard.com/badge/github.com/sj14/multicode)](https://goreportcard.com/report/github.com/sj14/multicode)
55
[![GoDoc](https://godoc.org/github.com/sj14/multicode/decode?status.png)](https://godoc.org/github.com/sj14/multicode/decode)
66

7-
`multicode` allows to input a (nested) `byte`, `hex`, `base64` or `proto` (protocol buffers) decoded sequence and will recursively try to encode it. This is helpful when you get encoded data but don't exactly know how it was encoded or encoding might lead to cumbersome command concatenation.
7+
`multicode` allows to input a (nested) `bits`, `bytes`, `hex`, `base64` or `proto` (protocol buffers) encoded sequence and will recursively try to decode it. This is helpful when you get encoded data but don't exactly know how it was encoded or decoding might lead to cumbersome command concatenation.
88

99
## Installation
1010

@@ -43,13 +43,18 @@ go get -u github.com/sj14/multicode/cmd/decode-web
4343
``` text
4444
-base64
4545
use base64 decoding (default true)
46+
-bit
47+
use bit decoding (default true)
4648
-byte
4749
use byte decoding (default true)
4850
-hex
4951
use hex decoding (default true)
5052
-proto
5153
use proto decoding (default true)
52-
-v verbose output mode
54+
-verbose
55+
verbose output mode
56+
-version
57+
print version information
5358
```
5459

5560
## CLI Examples
@@ -161,4 +166,4 @@ docker run --rm -it decode
161166
```text
162167
docker build -f Dockerfile.decode-web -t decode-web .
163168
docker run --rm -it -p 8080:8080 decode-web
164-
```
169+
```

0 commit comments

Comments
 (0)