@@ -429,7 +429,7 @@ The simplest way to decrypt data from stdin is as follows:
429429
430430.. code :: sh
431431
432- $ cat encrypted-data | sops decrypt > decrypted-data
432+ $ cat encrypted-data | sops decrypt > decrypted-data
433433
434434 By default, ``sops `` determines the input and output format from the provided filename. Since in this case,
435435no filename is provided, ``sops `` will use the binary store which expects JSON input and outputs binary data
@@ -440,8 +440,8 @@ the input and output formats by passing ``--input-type`` and ``--output-type`` a
440440
441441.. code :: sh
442442
443- $ cat encrypted-data | sops decrypt --filename-override filename.yaml > decrypted-data
444- $ cat encrypted-data | sops decrypt --input-type yaml --output-type yaml > decrypted-data
443+ $ cat encrypted-data | sops decrypt --filename-override filename.yaml > decrypted-data
444+ $ cat encrypted-data | sops decrypt --input-type yaml --output-type yaml > decrypted-data
445445
446446 In both cases, ``sops `` will assume that the data you provide is in YAML format, and will encode the decrypted
447447data in YAML as well. The second form allows to use different formats for input and output.
@@ -452,7 +452,7 @@ SOPS which filename to use to match creation rules:
452452
453453.. code :: sh
454454
455- $ echo ' foo: bar' | sops encrypt --filename-override path/filename.sops.yaml > encrypted-data
455+ $ echo ' foo: bar' | sops encrypt --filename-override path/filename.sops.yaml > encrypted-data
456456
457457 SOPS will find a matching creation rule for ``path/filename.sops.yaml `` in ``.sops.yaml `` and use that one to
458458encrypt the data from stdin. This filename will also be used to determine the input and output store. As always,
@@ -461,7 +461,7 @@ the input store type can be adjusted by passing ``--input-type``, and the output
461461
462462.. code :: sh
463463
464- $ echo foo=bar | sops encrypt --filename-override path/filename.sops.yaml --input-type dotenv > encrypted-data
464+ $ echo foo=bar | sops encrypt --filename-override path/filename.sops.yaml --input-type dotenv > encrypted-data
465465
466466
467467 Encrypting using Hashicorp Vault
0 commit comments