使用 popen,但文本看起来很奇怪 - Python

发布于 2024-09-05 08:51:08 字数 217 浏览 4 评论 0原文

我正在使用 os.popen() 来运行一些命令。

这就是 "man ls" 的样子:

alt text


关于显示文本的任何想法像这样。我尝试了 Arial 和 Consolas 字体。

帮助将是惊人的!谢谢

I'm using os.popen() in order to run a few commands.

This is what "man ls" looks like:

alt text


Any ideas why the text is displayed as such. I tried both Arial and Consolas fonts.

Help would be amazing! Thanks

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

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

发布评论

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

评论(1

新雨望断虹 2024-09-12 08:51:08

这些是退格字符:man 尝试退格并重新打印字符以获得粗体,或者尝试通过下划线加退格来获得下划线。

man 手册页显示:

要获取不带退格键和下划线的纯文本版本的手册页,请尝试

# 人 foo |列-b> foo.mantxt

您还可以在 Python 中进行简单的后处理:

s = re.sub(".\x08", "", s)

这会删除第二个字符是退格键的任何字符对。

Those are backspace characters: man is trying to backspace and reprint characters to get bolding, or underscores plus backspaces to get underlining.

The man man page says:

To get a plain text version of a man page, without backspaces and underscores, try

# man foo | col -b > foo.mantxt

You could also do a simple post-processing in Python:

s = re.sub(".\x08", "", s)

This removes any pair of characters where the second character is a backspace.

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