darkrc/bin/find-edit

26 lines
323 B
Plaintext
Raw Normal View History

2023-02-01 08:21:51 +00:00
#!/bin/sh
2023-06-20 17:44:53 +00:00
ignore='-not -path "*/.*/*"'
while test $# != 0
do
case "$1" in
-h) unset ignore ;;
--) shift; break ;;
*) break ;;
esac
shift
done
2023-02-01 08:21:51 +00:00
if [ -f "$1" ]
then
$EDITOR $1
else
2023-06-20 17:44:53 +00:00
file=$(sh -c "find . $ignore -type f" | fzf -m -1 -q "$*")
if [ "$?" -eq 0 ]
2023-02-01 08:21:51 +00:00
then
2023-06-20 17:44:53 +00:00
echo "$file" | xargs -d '\n' $EDITOR
2023-02-01 08:21:51 +00:00
fi
fi