Files
tldr/pages.tr/common/base64.md

21 lines
425 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: <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`