mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
# fcd - cd into directory
|
|
|
|
fcd() {
|
|
local dir
|
|
dir=$(find . -type d | sed '1d; s|^\./||' | fzf --preview 'tree -C {} | head -50') && cd "$dir"
|
|
}
|