Using FZF to Improve Productivity
By Akash Khan
Consider the following problem.
Given an array of strings find all strings that match a given pattern. For example consider the input array to be ['apple', 'ball', 'cat', 'doll']
and the pattern to be al
…