From a273dfe8eb659d9ede161b7a738f9b2ef8522b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Szyma=C5=84ski?= Date: Sat, 1 Jun 2019 19:44:12 +0200 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 6 ++++++ 1 file changed, 6 insertions(+) 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