Piping to fzf
John Costanzo

John Costanzo @jrock2004

About: An EmberJs Developer who loves to build web apps

Location:
Philadelphia
Joined:
Aug 7, 2017

Piping to fzf

Publish Date: Aug 8 '17
6 0

So what are some good aliases that you have setup in your zshrc for using FZF? Let me give you some examples of what I have and maybe you can comment on some of your that might be interesting to others.

Some of these I have found on the internet:

alias gcorb='gco --track $(git branch -r | fzf)'
alias gcob='gco $(git branch | fzf)'
alias gmob='git merge $(git branch | fzf)'

fkill() {
  kill -9 $(ps ax | fzf | awk '{ print $1 }')
}

alias apps='dpkg-query --show | fzf'
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment