1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:46:00 +02:00

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

This commit is contained in:
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

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}}`