m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

Updated Examples (markdown)

Filip Szymański
2019-06-01 19:44:12 +02:00
parent 2c649334b5
commit a273dfe8eb

@@ -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
}
```