base64: clarify example descriptions that do not edit files inplace (#5656)

manned-org
Steven Pitts 2021-04-11 11:07:45 -04:00 committed by GitHub
parent 3f17e72bf9
commit 85ad9ba247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,11 +3,11 @@
> Encode or decode file or standard input to/from Base64, to standard output.
> More information: <https://www.gnu.org/software/coreutils/base64>.
- Encode a file:
- Encode the contents of a file as base64 and write the result to stdout:
`base64 {{filename}}`
- Decode a file:
- Decode the base64 contents of a file and write the result to stdout:
`base64 --decode {{filename}}`