summaryrefslogtreecommitdiff
path: root/.local/bin/woman
blob: b63dac271bd55c0f8f1723e012bc6e057098cebe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

apropos . \
| sed -E 's/ (\([^)]+\))\s*-/\1 —/' \
| sort \
| osel \
| sed -E 's/([^(]+)\(([^)]+)\).*/\2 \1/' \
| {
	read p s
	[ -n "$p" -a -n "$s" ] && man -Tpdf "$p" "$s" | zathura -
}