LoginSignup
2
0

More than 5 years have passed since last update.

manページをPDF化する

Last updated at Posted at 2018-09-26

以下の方法でmanページをPDF化できる。

$ man -t {pdf化したいマニュアル名} | ps2pdf - {出力pdf名}
// 例
$ man -t git | ps2pdf - git.pdf

macの場合、ps2pdfは下記方法でインストールできるはず。

$ brew install ghostscript

参考文献

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0