Software-Installation

Arch Linux 中沒有 Whipper 程序的手冊頁

  • February 27, 2021

我已經whipper在 Arch Linux 的官方儲存庫中安裝了帶有 pacman 的程序來翻錄 CD。但是手冊頁不會提供man whipper.

然後我複製了他們的 github: https ://github.com/whipper-team/whipper 進入手冊頁文件夾,執行make,仍然man whipper不會顯示手冊頁。我不想從原始碼建構。也許這就是問題所在?無論如何,我想從 repo 中保留安裝並獲取手冊頁。讓我知道你認為我應該怎麼做!

先謝謝了!

如果您希望儲存庫中的包包含手冊頁,則需要針對該包打開錯誤報告:轉到https://archlinux.org/packages/community/x86_64/whipper/並點擊“添加新錯誤” .

man whipper執行後不會打開手冊頁makeman/因為man不會在目前目錄中搜尋手冊頁。為此,您需要 : 的(--local-file簡稱-l)選項。man``man --local-file whipper.1

所以在閱讀了@Wieland 的回復後,這就是我所做的:

在 ~/.bashrc 中添加了一個條目

alias man-whipper='man ~/path/to/man/file'

在本例中,該文件是 git clone 目錄中的whipper.1。

謝謝您的幫助!

引用自:https://unix.stackexchange.com/questions/631782