darkrc/bin/find-edit

27 lines
366 B
Plaintext
Raw Permalink Normal View History

2023-02-01 08:21:51 +00:00
#!/bin/sh
2023-06-20 17:44:53 +00:00
ignore='-not -path "*/.*/*"'
root="."
while test $# != 0
do
case "$1" in
-h) unset ignore; shift ;;
-r) root="$2"; shift 2;;
--) shift; break ;;
*) break ;;
esac
done
2023-02-01 08:21:51 +00:00
if [ -f "$1" ]
then
$EDITOR $1
else
2023-09-12 09:49:12 +00:00
file=$(sh -c "find $root $ignore -type f" | fzf -i -m -1 -q "$*")
2023-06-20 17:44:53 +00:00
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