<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.7.2">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2018-02-15T00:56:07+00:00</updated><id>http://localhost:4000/</id><title type="html">timh</title><subtitle>Random selection of tips and ideas.</subtitle><entry><title type="html">FZF - Fuzzy Finder</title><link href="http://localhost:4000/tools/2018/02/15/welcome-to-jekyll.html" rel="alternate" type="text/html" title="FZF - Fuzzy Finder" /><published>2018-02-15T00:43:04+00:00</published><updated>2018-02-15T00:43:04+00:00</updated><id>http://localhost:4000/tools/2018/02/15/welcome-to-jekyll</id><content type="html" xml:base="http://localhost:4000/tools/2018/02/15/welcome-to-jekyll.html">&lt;p&gt;fzf (fuzzy finder) is &lt;em&gt;an interactive Unix filter for command-line that can be used with any list; files, command history, processes, hostnames, bookmarks, git commits, etc.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The following example will give you a list of all files found, which can filtered further on.&lt;/p&gt;

&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;find . -iname &quot;*.c&quot; | fzf
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;This example allows text searching through all the text files within the current folder.&lt;/p&gt;

&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;grep --line-buffered --color=never -r &quot;&quot; * | fzf
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;See the hackermoon post below for git specific uses: “git log –pretty=oneline | fzf” to allow easy searching through commits.&lt;/p&gt;

&lt;p&gt;https://hackernoon.com/be-125-more-efficient-with-git-60556a1ce971&lt;/p&gt;

&lt;p&gt;fzf - https://github.com/junegunn/fzf&lt;/p&gt;</content><author><name></name></author><summary type="html">fzf (fuzzy finder) is an interactive Unix filter for command-line that can be used with any list; files, command history, processes, hostnames, bookmarks, git commits, etc.</summary></entry></feed>