You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
195 B
13 lines
195 B
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
man -k . |\
|
||
|
awk '{ print $1 " " $2 }' |\
|
||
|
rofi -dmenu -p man -i -matching regex |\
|
||
|
awk '{ print $2 " " $1 }' |\
|
||
|
tr -d '()' |\
|
||
|
xargs man -t |\
|
||
|
ps2pdf - - |\
|
||
|
zathura -
|
||
|
|
||
|
|