在shell Linux中获取非ASCII字符

时间:2015-11-04 11:19:21

标签: linux bash shell base64

我有一个返回非ASCII编码的base64结果的命令,如何在shell变量中得到结果。

获得它的任何解决方案?

示例:

$ mycommand|base64 -d > f
# verify presence of character with hexdump command
$ hexdump -C f
00000000  06 05 03 01                                       |....|
00000004

1 个答案:

答案 0 :(得分:0)

我找到了解决方案:

$ a=`mycommand|base64 -d|hexdump -v -e '1/1 "%02X"'`
$ echo $a
06050301