2019-01-03 17:35:51 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2019-08-22 14:28:39 +00:00
|
|
|
# Description: Fuzzy find a file in directory subtree with fzy
|
|
|
|
# Opens in $VISUAL or $EDITOR if text
|
|
|
|
# Opens other type of files with xdg-open
|
2019-01-03 17:35:51 +00:00
|
|
|
#
|
2019-03-24 15:41:43 +00:00
|
|
|
# Shell: POSIX compliant
|
2019-01-03 17:35:51 +00:00
|
|
|
# Author: Arun Prakash Jana
|
|
|
|
|
2019-11-21 20:44:25 +00:00
|
|
|
entry="$(find . -type f 2>/dev/null | fzy)"
|
2019-08-22 14:28:39 +00:00
|
|
|
|
|
|
|
case "$(file -biL "$entry")" in
|
|
|
|
*text*)
|
|
|
|
"${VISUAL:-$EDITOR}" "$entry" ;;
|
|
|
|
*)
|
|
|
|
xdg-open "$entry" >/dev/null 2>&1 ;;
|
|
|
|
esac
|