5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pecoのインストール

Last updated at Posted at 2015-11-03

bash等のシェルを便利に拡張してくださるようです。
思った以上に便利そうなので、簡単にインストール方法をまとめておきたいと思います。

概要

ここです
https://github.com/peco/peco

標準出力をインクリメンタルサーチできます。
Demo画像見てもらえればなんとなく動きが想像できるのではないかと思います。

インストール

以下より最新のバイナリを取得しましょう。
(2015/11/06時点では0.3.5が最新でした)
https://github.com/peco/peco/releases/

setup peco
cd /usr/local/src/
sudo wget https://github.com/peco/peco/releases/download/v0.3.5/peco_linux_amd64.tar.gz
sudo tar -C /usr/local/ -xzf peco_linux_amd64.tar.gz 
.bashrc
PATH=$PATH:/usr/local/peco_linux_amd64

goをインストールしソースからインストールも可能ですが、直接バイナリを取得してもOKです。

動作確認

ls
ls | peco

使い勝手よいので、ぜひお試しを。

5
6
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?