## 关键字
技术风险部,部门直招,最好 3+ 年 Golang 开发经验,基础扎实。
## 简历投递 Email
```
echo Y2hlbnhpYW5nLmxqYyNhbGliYWJhLWluYy5jb20K | base64 -D | sed 's/#/@/'
```
<a href="/user/leizhenyu" title="@leizhenyu">@leizhenyu</a> base64 --help
用法:base64 [选项]... [文件]
Base64 encode or decode FILE, or standard input, to standard output.
如果没有指定文件,或者文件为"-",则从标准输入读取。
必选参数对长短选项同时适用。
-d, --decode 解码数据
-i, --ignore-garbag 解码时忽略非字母字符
-w, --wrap=字符数 在指定的字符数后自动换行(默认为76),0 为禁用自动换行
--help 显示此帮助信息并退出
--version 显示版本信息并退出
数据以 RFC 4648 规定的 base64 字母格式进行编码。
解码时,输入数据(编码流)可能包含一些非有效 base64 字符的换行符。
可以尝试用 --ignore-garbage 选项来绕过编码流中的无效字符。
#3
更多评论
1楼 <a href="/user/YexinZhang" title="@YexinZhang">@YexinZhang</a> 没写错,-D 和 -d 都是 decode 的意思;
```shell
# base64 -h
Usage: base64 [-hvDd] [-b num] [-i in_file] [-o out_file]
-h, --help display this message
-Dd, --decode decodes input
-b, --break break encoded string into num character lines
-i, --input input file (default: "-" for stdin)
-o, --output output file (default: "-" for stdout)
```
#2