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.
This commit is contained in:
Alexandre González 2016-11-13 22:47:32 +01:00 committed by Álex González
parent 5c4c2cae69
commit c029794dc8
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ type: Opaque
Decode the password field:
```shell
$ echo "MWYyZDFlMmU2N2Rm" | base64 -d
$ echo "MWYyZDFlMmU2N2Rm" | base64 --decode
1f2d1e2e67df
```