From 3c111684d3fb218915bd38894fd0205d98ea8fbd Mon Sep 17 00:00:00 2001 From: Matthew Bennett Date: Sat, 17 Oct 2020 17:37:02 +0200 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Examples.md b/Examples.md index c561ee8..b0e61d1 100644 --- a/Examples.md +++ b/Examples.md @@ -123,6 +123,10 @@ fo() { ```sh # select files with fzf and send to command. # Put non-GUI processes in the foreground +# Usage: +# f cd (hit enter, choose path) +# f vim (hit enter, choose files) +# f vlc (hit enter, choose files) f() { # store the files from fzf IFS=$'\n' files=($(fzf --query="$2" --multi))