如何打印 bash 脚本的源代码(在纸上)?

发布于 2024-07-30 06:02:39 字数 107 浏览 8 评论 0原文

我需要在纸上打印一些 Bash 脚本。 关于如何通过语法突出显示获得良好的输出有什么建议吗?

我尝试过 TextMate,但输出有巨大的字体(并且没有语法突出显示,没有颜色)。

I need to print some Bash script on paper. Any recommendations on how to get a nice output with syntax highlighting and all that?

I've tried TextMate, but the output had huge fonts (and no syntax highlighting, no colors).

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

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

发布评论

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

评论(5

又爬满兰若 2024-08-06 06:02:39

您可以使用 gvim 将脚本转换为彩色 html。 (在 gvim 中打开脚本,然后选择“语法”菜单,然后选择“转换为 html”)。 然后你可以使用 Firefox 打印该 html。

You can use gvim to convert the script to colorized html. (Open script in gvim then select 'Syntax' menu then 'Convert to html'). Then you can print that html using firefox.

我家小可爱 2024-08-06 06:02:39

我最终使用了 Bundles > 文本伴侣> 在 TextMate 中创建 HTML,然后打印 HTML。

I ended up using Bundles > TextMate > Create HTML in TextMate and then printing the HTML.

紫瑟鸿黎 2024-08-06 06:02:39

Komodo Edit 是免费的,适用于 Linux、OSX 和 Windows,突出显示效果非常好许多不同的格式。

Komodo Edit is free, works in Linux, OSX and Windows, does great job highlighting many different formats.

疯到世界奔溃 2024-08-06 06:02:39

我用的是enscript。 它是一个命令行工具,用于格式化文本以进行打印。 它包括对 bash 语法突出显示的支持。 可以轻松配置行编号和行突出显示。

一般来说,我告诉它打印到文件,这样我就可以在预览中查看它并调整任何选项。

如果您还没有它,您可以将其从 MacPorts 中取出。

I use enscript. It's a command line tool for formatting text for printing. It includes support for bash syntax highlighting. It is easy to configure for line numbering and row highlighting.

Generally I tell it to print to a file so I can look at it in Preview and tweak any options.

You can pull it out of MacPorts if you don't have it already.

千と千尋 2024-08-06 06:02:39

我通常更喜欢 enscript,这些是我最喜欢的选项:

enscript -2rG -Ebash <filename> -P<printername>
  • -2 -> 每张打印两页
  • -r -> 旋转90°
  • -G -> 花哨的标题
  • -Ebash -> 每个 bash 的语法高亮

如果您厌倦了一直这样写,您可以编写一个别名或将其放入 makefile 中。

I usually prefer enscript, and these are my favorite options:

enscript -2rG -Ebash <filename> -P<printername>
  • -2 -> print two pages per sheet
  • -r -> rotate 90º
  • -G -> fancy headers
  • -Ebash -> syntax highlight per bash

If you are tired of writing this all the time, you can write an alias or put it in a makefile.

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