darkrc/bin/find-dir

15 lines
191 B
Plaintext
Raw Normal View History

2023-05-30 07:37:24 +00:00
#!/bin/sh
if [ -e "$1" ]
then
root=$1
shift 1
else
root=$(pwd)
fi
if [ -n "$*" ]
then find "$root" -maxdepth 1 -type d | fzf -1 -q "$*"
else find "$root" -maxdepth 1 -type d | fzf -1
2023-05-30 07:37:24 +00:00
fi