Jasmine
Jasmine

Reputation: 16225

base64 encode string from a terminal?

OS X 10.8.3 C++

We have base64 encode and decode functions in our code.

However, I want to base64 encode a string from my terminal and use it in my code so our functions can decode it when it needs to be used.

How does one base64 encode a string from a terminal?

Upvotes: 3

Views: 17122

Answers (2)

user149341
user149341

Reputation:

Using the base64 command, sensibly enough:

# echo -n Hello | base64
SGVsbG8K
# echo SGVsbG8K | base64 -D
Hello

Upvotes: 14

Rotem jackoby
Rotem jackoby

Reputation: 22198

From here:

base64 command is available by default on my OS X 10.9.4.

Encoding: base64 <<< string.
Decoding: base64 -D <<< string.

Upvotes: 0

Related Questions