This is the multi-page printable view of this section. Click here to print.

Return to the regular view of this page.

base64

    base64 utility acts as a base64 decoder when passed the --decode (or -d) flag and as a base64 encoder otherwise. As a decoder it only accepts raw base64 input and as an encoder it does not produce the framing lines.

    Usage:
      ops -base64 [options] <string>
    

    Options

    -h, --help             Display this help message
    -e, --encode <string>  Encode a string to base64
    -d, --decode <string>  Decode a base64 string
    

    Examples

    Encoding

    ops -base64 -e "OpenServerless is wonderful"
    

    This will output:

    T3BlblNlcnZlcmxlc3MgaXMgd29uZGVyZnVs
    

    Decoding

    ops -base64 -d "T3BlblNlcnZlcmxlc3MgaXMgd29uZGVyZnVs"
    

    This will output:

    OpenServerless is wonderful