summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2013-11-27 10:20:27 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2013-11-27 10:20:27 +0900
commitcf0ca8578ce1e3ca930d74629ab521c6fa221ec6 (patch)
tree2d09a98cb4037275c719d6acb639a85c2b0e10b8
parent07aee79bd8804bbee88bfc9db7f694940a227ea3 (diff)
Update bash key binding example
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index a9b8a91d..0dee291e 100644
--- a/README.md
+++ b/README.md
@@ -213,7 +213,7 @@ bind '"\er": redraw-current-line'
# CTRL-T - Paste the selected file path into the command line
fsel() {
find ${1:-*} | fzf -m | while read item; do
- printf '%q ' $item
+ printf '%q ' "$item"
done
echo
}