We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8368b1a commit df9cf92Copy full SHA for df9cf92
1 file changed
README.md
@@ -241,10 +241,17 @@ The value of a secret is always encoded into base64.
241
When using Go's `json.Unmarshal` it will automatically convert it back into
242
a slice of bytes `[]byte`.
243
244
-To manually decode it, you can pipe the value into `base64 --decode -i`.
+To manually decode it, you can pipe the value into `base64`, using the
245
+flags appropriate for your platform:
246
247
```bash
-echo "<base64 string>" | base64 --decode -i
248
+# macOS / BSD
249
+echo "<base64 string>" | base64 -D
250
+
251
+# GNU/Linux (coreutils)
252
+echo "<base64 string>" | base64 --decode
253
+# or
254
+echo "<base64 string>" | base64 -d
255
```
256
257
## Legal
0 commit comments