nnn/user-scripts/fzy

9 lines
208 B
Plaintext
Raw Normal View History

2019-01-03 17:35:51 +00:00
#!/usr/bin/env sh
2019-01-04 17:24:18 +00:00
# Description: Fuzzy find a file in directory subtree with fzy and open using xdg-open
2019-01-03 17:35:51 +00:00
#
# Shell: POSIX compliant
2019-01-03 17:35:51 +00:00
# Author: Arun Prakash Jana
xdg-open `find -type f | fzy` >/dev/null 2>&1