बेस 64 प्रस्तुतीकरण का उपयोग करके कोड और डिकोड करें। अधिक जानकारी: https://keith.github.io/xcode-man-pages/base64.1.html।
base64 --input={{सादा_फ़ाइल}}
base64 --decode --input={{base64_फ़ाइल}}
stdin
से कोड करें:echo -n "{{सादा_फ़ाइल}}" | base64
stdin
से डिकोड करें:echo -n {{base64_फ़ाइल}} | base64 --decode