Pipe

如何將 ps2pdf 的輸出通過管道傳輸到 zathura

  • July 7, 2019

我想以 pdf 格式查看手冊頁。我嘗試了以下方法:

man -t awk | ps2pdf - - | zathura(結合範例和 ps2pdf 手冊頁中的最後一個範例)

但是,zathura 只是顯示了一個黑色視窗,就好像我沒有打開任何文件一樣。

我怎樣才能解決這個問題?

-作為命令行參數添加到 zathura:

man -t awk | ps2pdf - - | zathura -

正如手冊頁所說:

zathura displays the given files. If a single hyphen-minus (-) is given
as file name, the content will be read from the standard input.

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