summaryrefslogtreecommitdiff
path: root/man-list
blob: 6a4f3b2ee3e1f7ae132a23d5abc92f55d22c1227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh -e
# differences between man-db and mandoc apropos(1) make it more
# difficult to parse

# thanks go to opal

length="$(apropos . \
  | sed -r -e's/ ?\(/(/' \
  | sed 's/^/man:/g' \
  | cut '-d ' -f1 \
  | tr -c ' \n' '_' \
  | sort \
  | tail -n1 \
  | wc -c)"

apropos . \
  | sed -r -e's/ ?\(/(/' \
  | sed 's/^/man:/g' \
  | tr -s ' ' \
  | sed 's/ /\t/' \
  | spacify "${length}"