ohmyksh/completions/man.ksh
2020-07-15 16:28:24 -06:00

10 lines
204 B
Bash
Executable File

MAN_CACHE=$LOAD_PATH/cache/man
if [ ! -f $MAN_CACHE ]; then
MANPATH=/usr/share/man man -k Nm~. | cut -d\( -f1 | tr -d , | \
sort | \
uniq > $MAN_CACHE
fi
set -A complete_man_1 -- $(cat $MAN_CACHE)