Files
tldr/pages.tr/common/base64.md
4G3NT 87ec0727fc pages*: add backticks to every io stream (#10442)
* pages*: add backticks to every io stream
2023-07-02 18:42:01 +05:30

21 lines
435 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# base64
> Bir dosya veya standart veriyi Base64 formatında şifrele veya yalın veri çıktısı olarak deşifre et.
> Daha fazla bilgi için: <https://www.gnu.org/software/coreutils/base64>.
- Bir dosyayı şifrele:
`base64 {{dosyaismi}}`
- Bir dosyayı deşifre et:
`base64 --decode {{dosyaismi}}`
- `stdin`'den şifrele:
`{{herhangibirkomut}} | base64`
- `stdin`'den deşifre et:
`{{herhangibirkomut}} | base64 --decode`