darkrc/bin/find-dir

15 lines
191 B
Bash
Executable File

#!/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
fi