Files
dotfiles/functions/fcd.sh
2024-08-09 12:27:45 +02:00

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"
}