1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00
rc/sh/ff

15 lines
341 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
# YES_ASH
2021-07-29 00:37:35 -07:00
ff() { ### @-
### select a file from a given or current directory using
### [`fzy`.](https://github.com/jhawthorn/fzy)
2021-07-29 00:37:35 -07:00
[ $# -le 1 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
2021-10-04 17:05:43 -07:00
find "${1:-.}" -type f | fzy -l 23
2021-07-29 00:37:35 -07:00
}
[ -n "${preload+-}" ] || ff "$@"