GNKF: NKF ぽいなにか の v0.2.0 をリリースした
文字列処理の習作 gnkf の v0.2.0 をリリースした。
このバージョンで BASE64 符号化の機能を追加した。
$ gnkf base64 -h
Encode/Decode BASE64.
Usage:
gnkf base64 [flags]
Aliases:
base64, b64
Flags:
-d, --decode decode BASE64 string
-f, --file string path of input text file
-u, --for-url encoding/decoding defined in RFC 4648
-h, --help help for base64
-p, --no-padding no padding
-o, --output string path of output file
Global Flags:
--debug for debug
オリジナルの nkf はコマンドとオプションがごちゃごちゃしてて分かりにくいので base64
や openssl base64
のコマンドの形式に合わせることにした。
$ echo Hello World | gnkf base64
SGVsbG8gV29ybGQK
$ echo SGVsbG8gV29ybGQK | gnkf base64 -d
Hello World
これで base64
や openssl
コマンドがない環境でも大丈夫(笑)
ブックマーク
参考図書
- プログラミング言語Go (ADDISON-WESLEY PROFESSIONAL COMPUTING SERIES)
- Alan A.A. Donovan (著), Brian W. Kernighan (著), 柴田 芳樹 (翻訳)
- 丸善出版 2016-06-20
- 単行本(ソフトカバー)
- 4621300253 (ASIN), 9784621300251 (EAN), 4621300253 (ISBN), 9784621300251 (ISBN)
- 評価
著者のひとりは(あの「バイブル」とも呼ばれる)通称 “K&R” の K のほうである。この本は Go 言語の教科書と言ってもいいだろう。