mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
base64: add Spanish translation (#9210)
This commit is contained in:
parent
27a235d015
commit
7c4f003ac3
1 changed files with 20 additions and 0 deletions
20
pages.es/osx/base64.md
Normal file
20
pages.es/osx/base64.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# base64
|
||||
|
||||
> Codifica y decodifica usando la repesentación Base64.
|
||||
> Más información: <https://www.unix.com/man-page/osx/1/base64/>.
|
||||
|
||||
- Codifica un archivo:
|
||||
|
||||
`base64 --input={{archivo_plano}}`
|
||||
|
||||
- Decodifica un archivo:
|
||||
|
||||
`base64 --decode --input={{base64_archivo}}`
|
||||
|
||||
- Codifica desde stdin:
|
||||
|
||||
`echo -n "{{texto_plano}}" | base64`
|
||||
|
||||
- Decodifica desde stdin:
|
||||
|
||||
`echo -n {{base64_texto}} | base64 --decode`
|
Loading…
Add table
Reference in a new issue