nnn/scripts/user-scripts/fzy.sh

9 lines
200 B
Bash
Raw Normal View History

2019-01-03 17:35:51 +00:00
#!/usr/bin/env sh
# Description: Fuzzy find files in directory subtree with fzy and open using xdg-open
#
# Shell: generic
# Author: Arun Prakash Jana
xdg-open $(find -type f | fzy) >/dev/null 2>&1