在Linux上如何將文字檔案轉換成PDF格式

2021-09-20 19:08:11 字數 595 閱讀 1539

當你有一大堆文字檔案要維護的時候,把它們轉換成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檔案

首先,使用enscript命令列工具將文字檔案轉換成postscript格式。

$ enscript -p output.ps input.txt
最後將postscript格式檔案轉換成pdf檔案。

$ ps2pdf output.ps output.pdf

MySQL 如何將表資料備份到文字檔案

使用mysql時,資料庫的資料備份是乙個值得我們關注的話題。按照不同的維度,資料庫的資料備份可以分為物理備份與邏輯備份,也可以分為全量備份與增量備份,等等。而關於這些備份型別的區別以及適用場景,可以參考 mysql 5.7 官方手冊的詳細介紹 backup and recovery types。本文...

python 如何將字典值寫入乙個文字檔案?

我有乙個字典,我打算把它寫入乙個檔案。exdict with open file.txt r as file file write exdict 我遇到了這樣的錯誤 file write exdict typeerror must be str not dict我修復了剛才的錯誤 exdict wi...

將文字檔案轉為html檔案

前言 借助指令碼把文字裡的資料轉為html資料,此時用到cat cloud here document用法 如 info.txt文字資料為 zhangsan shang hai lisi beijing wangwu tianjin txt2html.sh指令碼 為 bin bash cat clo...