diff options
Diffstat (limited to 'functions/fd')
-rw-r--r-- | functions/fd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/functions/fd b/functions/fd new file mode 100644 index 0000000..16f54d6 --- /dev/null +++ b/functions/fd @@ -0,0 +1,3 @@ +# fda - including hidden directories +local dir +dir=$(find ${1:-.} -type d 2> /dev/null | fzf +m) && cd "$dir" |