TranslateProject/translated/tech/20141118 Linux FAQs with Answers--How to convert a text file to PDF format on Linux.md
2014-11-18 22:25:36 +08:00

45 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Linux FAQs with Answers--How to convert a text file to PDF format on Linux
Linux 有问必答 --如何在Linux上将文本文件转换成PDF格式
================================================================================
> **提问** 我想要将一个纯文本文件转换成PDF文档。是否有一个简单的方法在Linux命令行下将文本文件转换成PDF文件
当你有一打文本文件要维护的时候把它们转换成PDF文档有一些好处。比如PDF对打印更友好因为PDF文档有预定义布局。除此之外还可以减少文档被意外修改的风险。
要将文本文件转换成PDF格式你要按照下面的两步。
### 准备工作 ###
首先你要安装两个需要的包。
在 Debian、Ubuntu 或者 Linux Mint上
$ sudo apt-get install enscript ghostscript
在 Fedora、CentOS/RHEL上
$ sudo yum install enscript ghostscript
在 Arch Linux上
$ sudo pacman -S enscript ghostscript
### 将文本文件转换成PDF格式 ###
准备工作完成之后按照下面的两步从文本文件生成一个PDF文件
首先将文本文件使用enscript命令行工具转换成postscript格式。
$ enscript -p output.ps input.txt
最后将postscript格式文件转换成PDF文件。
$ ps2pdf output.ps output.pdf
--------------------------------------------------------------------------------
via: http://ask.xmodulo.com/convert-text-to-pdf-linux.html
译者:[geekpi](https://github.com/geekpi)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出