LoginSignup
2
2

More than 5 years have passed since last update.

ghq listと同じことをfindでやる方法

Posted at

ghq.rootが ~/src だとすると、これで同じことができます。

find ~/src/github.com -follow  -maxdepth 2 -mindepth 2 -type d

結果

$ find ~/src/github.com -follow  -maxdepth 2 -mindepth 2 -type d
/Users/DQNEO/src/github.com/deyunanhai/tupai.js
/Users/DQNEO/src/github.com/dietcake/dietcake
/Users/DQNEO/src/github.com/DQNEO/fluent-logger-php
/Users/DQNEO/src/github.com/DQNEO/git-delete-remote-merged-branch
/Users/DQNEO/src/github.com/DQNEO/memo
/Users/DQNEO/src/github.com/DQNEO/minigit
/Users/DQNEO/src/github.com/DQNEO/myelectron

これをpecoに食わせるといい感じになりそうです。

find -followは何?

-followをつけるとシンボリックリンクもリストアップしてくれます。

ghq listはシンボリックリンクをリストアップしてくれないの?

下記記事によるとghq v0.7.1でなおったと書いてあるのですが、私の環境だとなぜかシンボリックリンクを拾ってくれませんでした。
http://motemen.hatenablog.com/entry/2015/08/ghq-v07

(それ以上深追いはしてない)

2
2
0

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
2
2