1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

base32: add Italian translation.

This commit is contained in:
Marco Bonelli 2019-01-21 12:21:44 +01:00 committed by Starbeamrainbowlabs
parent 4a87d225b0
commit 83c9238c19

19
pages.it/common/base32.md Normal file
View file

@ -0,0 +1,19 @@
# base32
> Codifica o decodifica file o standard input in Base32 su standard output.
- Codifica un file:
`base32 {{nome_file}}`
- Decodifica un file:
`base32 -d {{nome_file}}`
- Codifica da stdin:
`{{comando}} | base32`
- Decodifica da stdin:
`{{comando}} | base32 -d`