3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

日本語のmanページをプレビューする

Posted at
スクリーンショット 2018-12-22 1.11.47.b.png [OpenSSH 日本語マニュアルページ](https://euske.github.io/openssh-jman/)を読んでいたら、HTMLでの表示で一部改行がおかしかったので、ローカルでgroffで整形した状態のものを確認したくなりました。 manコマンドで見ようと思うと、適切な場所に配置しないと`JNROFF`が呼ばれないみたいなので、直接`groff`を起動してみることにしました。

groffのインストール

  • macOSにはいっているgroffはめちゃくちゃ古いのでhomebrewでgroffをいれます
$ brew install groff

整形して表示する

$ git clone git@github.com:euske/openssh-jman.git
$ cd openssh-jman
$ cat ssh.1 | /usr/local/bin/groff -Dutf8 -Tutf8 -mandoc -mja -E |less -isr
スクリーンショット 2018-12-22 1.08.14.png

ちゃんと改行されてるので、roff自体には問題がないようです。(roffを書いたことがないので本当に問題がないのかはよくわからない)

参考

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?