base64: add Hindi translation (#14562)

This commit is contained in:
Karthik Vallamsetla
2024-11-02 09:07:58 -07:00
committed by GitHub
parent b2b914559b
commit 9659a6096d

View File

@@ -0,0 +1,28 @@
# base64
> फ़ाइल या `stdin` को base64 में एन्कोड या डिकोड करें, `stdout` या किसी अन्य फ़ाइल में।
> अधिक जानकारी: <https://man.freebsd.org/cgi/man.cgi?query=base64>।
- फ़ाइल को `stdout` में एन्कोड करें:
`base64 {{-i|--input}} {{पथ/से/फाइल}}`
- फ़ाइल को निर्दिष्ट आउटपुट फ़ाइल में एन्कोड करें:
`base64 {{-i|--input}} {{पथ/से/इनपुट_फाइल}} {{-o|--output}} {{पथ/से/आउटपुट_फाइल}}`
- एन्कोडेड आउटपुट को एक विशेष चौड़ाई पर लपेटें (`0` लपेटने को अक्षम करता है):
`base64 {{-b|--break}} {{0|76|...}} {{पथ/से/फाइल}}`
- फ़ाइल को `stdout` में डिकोड करें:
`base64 {{-d|--decode}} {{-i|--input}} {{पथ/से/फाइल}}`
- `stdin` से `stdout` में एन्कोड करें:
`{{command}} | base64`
- `stdin` से `stdout` में डिकोड करें:
`{{command}} | base64 {{-d|--decode}}`