共23行

shell工具-percol

2026-02-27 09:02:48

percol

是什么

mooz/percol 这个工具是典型的 Unix 风格工具,它唯一做的事情就是:

怎么用

find . -name index.org | percol | xargs ls
git branch| percol | awk '{ print \$1 }' | xargs git checkout

alias

alias pk="ps eaux | percol | awk '{ print \$2 }' | xargs kill -9"
alias ff='findAndSubl(){ find . -name $1 | percol | xargs subl };findAndSubl'