diff --git a/Examples.md b/Examples.md index 4cd679a..9ae747c 100644 --- a/Examples.md +++ b/Examples.md @@ -1225,4 +1225,10 @@ Accepts an optional argument for the manual section (defaults to 1). man-find() { f=$(fd . $MANPATH/man${1:-1} -t f -x echo {/.} | fzf) && man $f } +``` + +```sh +fman() { + man -k . | fzf --prompt='Man> ' | awk '{print $1}' | xargs -r man +} ``` \ No newline at end of file