#!/bin/sh
# fgf, stands for Find Grep File
# finds files using find(1) and grep(1)
# requires pick(1) to be installed

find -type f -exec grep " " {} + | pick | cut -d':' -f 1
