我有一个返回非ASCII编码的base64结果的命令,如何在shell变量中得到结果。
获得它的任何解决方案?
示例:
$ mycommand|base64 -d > f
# verify presence of character with hexdump command
$ hexdump -C f
00000000 06 05 03 01 |....|
00000004
答案 0 :(得分:0)
我找到了解决方案:
$ a=`mycommand|base64 -d|hexdump -v -e '1/1 "%02X"'`
$ echo $a
06050301