From 12272f017e7313175f04540a98ceb775c4d04008 Mon Sep 17 00:00:00 2001 From: justinmk Date: Wed, 17 Dec 2014 16:43:01 -0800 Subject: [PATCH] add naive 'grep' example --- Examples.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Examples.md b/Examples.md index 7579c36..92d186b 100644 --- a/Examples.md +++ b/Examples.md @@ -56,6 +56,13 @@ cdf() { } ``` +Searching file contents +----------------------- + +```sh +grep --line-buffered --color=never -r "" * | fzf +``` + Command history ---------------