gpt4 book ai didi

bash - 在 bash 中将二进制数据作为参数传递

转载 作者:行者123 更新时间:2023-11-29 08:43:48 24 4
gpt4 key购买 nike

我需要将二进制数据传递给接受命令行参数的 bash 程序。有办法做到这一点吗?

这是一个接受一个参数的程序:

script arg1

但是我想传递一些不是好的 ASCII 字符的字节,而不是字符串 arg1 - 特别是字节 0x02, 0xc50xd8

我该怎么做?

最佳答案

script "`printf "\x02\xc5\xd8"`"
script "`echo -e "\x02\xc5\xd8"`"

测试:

# echo -n "`echo -e "\x02\xc5\xd8"`" | hexdump -C
00000000 02 c5 d8 |...|

关于bash - 在 bash 中将二进制数据作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9487037/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com