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

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