base64: add Hindi translation (#11039)

* Create base64.md

* moved from root to hindi

* base64: fix title, update placeholders

* Update pages.hi/osx/base64.md

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
Pranav Upadhyay 2023-10-21 10:51:19 +05:30 committed by GitHub
parent 6f98d4afe4
commit 9695993204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages.hi/osx/base64.md Normal file
View File

@ -0,0 +1,20 @@
# base64
> बेस 64 प्रस्तुतीकरण का उपयोग करके कोड और डिकोड करें।
> अधिक जानकारी: <https://www.unix.com/man-page/osx/1/base64/>.
- फ़ाइल को कोड करें:
`base64 --input={{सादा_फ़ाइल}}`
- फ़ाइल को डिकोड करें:
`base64 --decode --input={{base64_फ़ाइल}}`
- `stdin` से कोड करें:
`echo -n "{{सादा_फ़ाइल}}" | base64`
- `stdin` से डिकोड करें:
`echo -n {{base64_फ़ाइल}} | base64 --decode`