From 85ad9ba2479b8e3d8cc144fbf0150bc0d858dc2e Mon Sep 17 00:00:00 2001 From: Steven Pitts <25968054+makusu2@users.noreply.github.com> Date: Sun, 11 Apr 2021 11:07:45 -0400 Subject: [PATCH] base64: clarify example descriptions that do not edit files inplace (#5656) --- pages/common/base64.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/base64.md b/pages/common/base64.md index 2a5bf5e40..fbb6faadb 100644 --- a/pages/common/base64.md +++ b/pages/common/base64.md @@ -3,11 +3,11 @@ > Encode or decode file or standard input to/from Base64, to standard output. > More information: . -- 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}}`