Do you want to print a Linux, macOS, *BSD, or Unix manual page? Perhaps you want a nicely rendered PS or PDF file? There is an easy way to do this. Open the terminal and run following commands:
```
man -t {command} > "{filename}.ps"
man -t sort>"sort.ps"
# open using default Doc viewer
xdg-open "sort.ps" # Linux
open "sort.ps" # macOS
# print it on printer named HP2
man -t sort | lp -d HP2
```
