mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 09:15:32 +02:00
base64: add German translation (#8767)
This commit is contained in:
parent
ae6a87539f
commit
3b9e134450
1 changed files with 20 additions and 0 deletions
20
pages.de/common/base64.md
Normal file
20
pages.de/common/base64.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# base64
|
||||
|
||||
> Kodierung oder Dekodierung von Dateien oder Standardeingaben in/aus Base64, zur Standardausgabe.
|
||||
> Weitere Informationen: <https://www.gnu.org/software/coreutils/base64>.
|
||||
|
||||
- Kodiert den Inhalt einer Datei als base64 und schreibt das Ergebnis nach stdout:
|
||||
|
||||
`base64 {{datei_name}}`
|
||||
|
||||
- Dekodiert den Inhalt einer Datei als base64 und schreibt das Ergebnis nach stdout:
|
||||
|
||||
`base64 --decode {{datei_name}}`
|
||||
|
||||
- Kodieren von stdin:
|
||||
|
||||
`{{ein_kommando}} | base64`
|
||||
|
||||
- Dekodieren von stdin:
|
||||
|
||||
`{{ein_kommando}} | base64 --decode`
|
Loading…
Add table
Reference in a new issue