1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 15:15:28 +02:00

base64: add the -n option of echo in examples

This commit is contained in:
7anshuai 2017-12-27 15:14:36 +08:00 committed by Agniva De Sarker
parent 1970f5474c
commit 3b8036fbc2

View file

@ -12,8 +12,8 @@
- Encode from stdin:
`echo {{plain_text}} | base64`
`echo -n {{plain_text}} | base64`
- Decode from stdin:
`echo {{base64_text}} | base64 -D`
`echo -n {{base64_text}} | base64 -D`