Skip to content

Instantly share code, notes, and snippets.

@mrnugget
Created October 21, 2014 08:17
Show Gist options
  • Select an option

  • Save mrnugget/82edacc1a2501841fb6a to your computer and use it in GitHub Desktop.

Select an option

Save mrnugget/82edacc1a2501841fb6a to your computer and use it in GitHub Desktop.
Use fzz to interactively find a file and then `cd` to the directory of the top result
cdfzz() {
local file=$(fzz find . -iname "*{{}}*" | head -n 1)
local filedir=$(dirname ${file})
cd ${filedir}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment