Posts by wim66@distrotoot.com
(DIR) Post #A4Wr7GDit9lT1TdfH6 by wim66@distrotoot.com
2021-02-22T10:17:24Z
0 likes, 0 repeats
@derek I sometimes like to turn a man page into a pdf with ghostscript.Here's the function.pdfify() # convert man pages to pdf and open the pdf file{ man -t $1 | ps2pdf - $1.pdf && setsid xdg-open $1.pdf &> /dev/null }