summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2022-06-23 15:45:36 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2022-06-23 15:45:36 +0900
commit2d227e5222f7f318520dc57870adca1e6fc24875 (patch)
tree1f46df7959102d5666e491a55ce0922acecdfede /man
parent70529878e20cf0367ca25b0aa9dbf1f51062f5e0 (diff)
[man] Fix unescaped backslash in awk example
Close #2854
Diffstat (limited to 'man')
-rw-r--r--man/man1/fzf.12
1 files changed, 1 insertions, 1 deletions
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 906ab199..d4c0de16 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -450,7 +450,7 @@ e.g.
\fB# Press CTRL-A to select 100K items and see the sum of all the numbers.
# This won't work properly without 'f' flag due to ARG_MAX limit.
seq 100000 | fzf --multi --bind ctrl-a:select-all \\
- --preview "awk '{sum+=\$1} END {print sum}' {+f}"\fR
+ --preview "awk '{sum+=\\$1} END {print sum}' {+f}"\fR
Note that you can escape a placeholder pattern by prepending a backslash.