$ openssl base64 -in <infile> -out <outfile>
&001
openssl
如果没有 stdin 选项,则从 stdin 中读取。
尝试使用:
base64 -i <in-file> -o <outfile>
,在OS X上应该是默认可用的。
由于Python默认是在OS X中提供的,所以你可以通过以下方式使用。
$ echo FOO | python -m base64
Rk9PCg==
$ echo Rk9PCg== | python -m base64 -d
FOO
或者通过 Brew (coreutils
) 安装 brew install coreutils
,它将提供 base64
命令:
$ echo FOO | base64
Rk9PCg==
$ echo Rk9PCg== | base64 -d
FOO
在速度方面,我会使用openssl,其次是perl,然后是uuencode。在可移植性方面,我会使用uuencode,然后是Perl,最后是openssl(如果你想在尽可能多的其他UNIX平台上重用代码的话)。但要小心,因为不是所有的UNIX变种都支持 -m开关(AIX支持,HP/UX支持,Solaris不支持)。 txt,并将其写入 filename.b64 (在解码时,用 filename_when_uudecoded.txt 作为默认的文件名):
$ time perl -MMIME::Base64 -e 'undef $/;while(<>){print encode_base64($_);}' \
> out.jpg 1>filename.b64
real 0m0.025s
$ time uuencode -m -o filename.b64 out.jpg filename_when_uudecoded.txt
real 0m0.051s
$ time openssl base64 -in out.jpg -out filename.b64
real 0m0.017s
STDIN 示例:
uuencode -m -o filename.b64 file_in.txt filename_when_uudecoded.txt
现在所有的mac上都预装了Python,在终端中运行python
(或ipython )。
base64data = open('myfile.jpg','rb').read().encode('base64')
open('myfile.txt','w').write(base64data)
data = open('myfile.txt').read().decode('base64')
open('myfile.jpg','wb').write(data)
## encode to base64 (on OSX use `-output`)
openssl base64 -in myfile.jpg -output myfile.jpg.b64
## encode to base64 (on Linux use `-out`)
openssl base64 -in myfile.jpg -out myfile.jpg.b64
## decode from base64 (on OSX `-output` should be used)
openssl base64 -d -in myfile.jpg.b64 -output myfile.jpg
## decode from base64 (on Linux `-out` should be used)
openssl base64 -d -in myfile.jpg.b64 -out myfile.jpg
不知道为什么,echo -n <data> | openssl base64
在我的base64数据中间加了一个新行。我想这是因为我的base64数据太长了。
使用echo -n <data> | base64
进行编码,echo -n <base64-ed data> | base64 -D
进行解码,效果很好。
uuencode -m [-o output_file] [file] name
其中 name是要在编码头中显示的名称。
有Perl plus MIME:::Base64:
perl -MMIME::Base64 -e 'undef $/;while(<>){print encode_base64($_);}'
预装了这个程序。你可以在命令行中指定单独的文件(或者在标准输入中提供数据),每个文件都是单独编码的。你也可以这样做:
perl -i.txt -MMIME::Base64 -e 'undef $/;while(<>){print encode_base64($_);}' file1
这可以将file1备份到file1.txt,并将Base-64编码的输出写在原始文件上。
如果你对一个字体文件进行base64编码,你可以这样做:
base64 my-webfont.ttf > my-webfont.b64.ttf.txt
我在Mac(10.10)上一直使用这个方法。不会有行间距。
我们编译了一个跨平台的shell命令列表,将文件编码为base64。下面的命令是将一个输入文件(在例子中命名为deploy.key
)转换为base64,不需要任何换行封装。
# For systems with openssl
openssl base64 -A -in=deploy.key
# For systems with Python (2 or 3) installed
python -c "import base64; print(base64.standard_b64encode(open('deploy.key', 'rb').read()).decode())"
# For Windows or Linux systems that have the GNU coreutils base64 command
base64 --wrap=1000000 deploy.key
# For macOS systems
base64 --break=1000000 deploy.key
要将输出重定向到一个文件,请附加> base64-encoded.txt
(使用你选择的文件名)。