sed 替换为十六进制

发布于 2024-11-27 04:58:03 字数 286 浏览 1 评论 0原文

UTF-8 文件 test.txt:

AAAAAAAAAAAAAA

十六进制是

41 41 41 41 41 41 41 41 41 41

sed s/A/B/g test.txt 有效

sed s/\x41/B/g test.txt 无效 有些字符

是无法打印的,所以我必须使用它们的十六进制,A只是一个例子。

UTF-8 file test.txt:

AAAAAAAAAAAAAA

hex is

41 41 41 41 41 41 41 41 41 41

sed s/A/B/g test.txt works

sed s/\x41/B/g test.txt does not work

Some characters are unprintable so I must use their hex, A is just an example.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

顾北清歌寒 2024-12-04 04:58:03

shell对其进行预处理,使用单引号。

sed 's/\x41/B/g' test.txt

echo -e \x41   # x41
echo -e '\x41' # A

the shell preprocesses it, use single quotes.

sed 's/\x41/B/g' test.txt

echo -e \x41   # x41
echo -e '\x41' # A
为你拒绝所有暧昧 2024-12-04 04:58:03

如果您只想替换单个字符,您应该能够使用 tr 和八进制转义符,如下所示:

tr '\101' B

If you only want to replace individual characters, you should be able to use tr with octal escapes like this:

tr '\101' B
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文