如何打印 bash 脚本的源代码(在纸上)?
我需要在纸上打印一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 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.
我最终使用了 Bundles > 文本伴侣> 在 TextMate 中创建 HTML,然后打印 HTML。
I ended up using Bundles > TextMate > Create HTML in TextMate and then printing the HTML.
Komodo Edit 是免费的,适用于 Linux、OSX 和 Windows,突出显示效果非常好许多不同的格式。
Komodo Edit is free, works in Linux, OSX and Windows, does great job highlighting many different formats.
我用的是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.
我通常更喜欢 enscript,这些是我最喜欢的选项:
如果您厌倦了一直这样写,您可以编写一个别名或将其放入 makefile 中。
I usually prefer enscript, and these are my favorite options:
If you are tired of writing this all the time, you can write an alias or put it in a makefile.