From c029794dc87aabe3f47a51dae5db769531823d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Gonz=C3=A1lez?= Date: Sun, 13 Nov 2016 22:47:32 +0100 Subject: [PATCH] Use --decode for base64 command `-d` is used for the Linux version of the command but in the Mac/BSD version they use `-D`. Using `--decode` we are sure that the flag is compatible with both. --- docs/user-guide/secrets/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/secrets/index.md b/docs/user-guide/secrets/index.md index c55868f1f1..13f5a1eec1 100644 --- a/docs/user-guide/secrets/index.md +++ b/docs/user-guide/secrets/index.md @@ -158,7 +158,7 @@ type: Opaque Decode the password field: ```shell -$ echo "MWYyZDFlMmU2N2Rm" | base64 -d +$ echo "MWYyZDFlMmU2N2Rm" | base64 --decode 1f2d1e2e67df ```