ファイル/ディレクトリを検索して、peco って cd するやつ 2
ファイルを検索して、peco って cd するやつ - Qiita
mdfind
でなくても、find
でも -maxdepth を指定すれば性能が出ることがわかったので、改良版を作りました。
peco-find-cd() {
local FILENAME="$1"
local MAXDEPTH="${2:-3}"
local BASE_DIR="${3:-`pwd`}"
if [ -z "$FILENAME" ] ; then
echo "Usage: peco-find-cd <FILENAME> [<MAXDEPTH> [<BASE_DIR>]]" >&2
return 1
fi
local DIR=$(find ${BASE_DIR} -maxdepth ${MAXDEPTH} -name ${FILENAME} | peco | head -n 1)
if [ -n "$DIR" ] ; then
DIR=${DIR%/*}
echo "pushd \"$DIR\""
pushd "$DIR"
fi
}
peco-git-cd() {
peco-find-cd ".git" "$@"
}
peco-docker-cd() {
peco-find-cd "Dockerfile" "$@"
}
peco-vagrant-cd() {
peco-find-cd "Vagrantfile" "$@"
}
peco-go-cd() {
peco-find-cd ".git" 5 "$GOPATH"
}
これで、最後の例のように go のソースに簡単に行けるようになりました。
Author And Source
この問題について(ファイル/ディレクトリを検索して、peco って cd するやつ 2), 我々は、より多くの情報をここで見つけました https://qiita.com/yungsang/items/e10ca283a1ceeaa845db著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .