mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
base64: add Italian translation.
This commit is contained in:
parent
83c9238c19
commit
4ac8a6b9e4
1 changed files with 19 additions and 0 deletions
19
pages.it/common/base64.md
Normal file
19
pages.it/common/base64.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# base64
|
||||
|
||||
> Codifica o decodifica file o standard input in Base64 su standard output.
|
||||
|
||||
- Codifica un file:
|
||||
|
||||
`base64 {{nome_file}}`
|
||||
|
||||
- Decodifica un file:
|
||||
|
||||
`base64 -d {{nome_file}}`
|
||||
|
||||
- Codifica da stdin:
|
||||
|
||||
`{{comando}} | base64`
|
||||
|
||||
- Decodifica da stdin:
|
||||
|
||||
`{{comando}} | base64 -d`
|
Loading…
Add table
Reference in a new issue