tldr/pages.tr/common/base64.md

21 lines
435 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 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`