2021-07-29 00:37:35 -07:00
|
|
|
#!/usr/bin/env sh
|
2024-07-22 17:54:54 -07:00
|
|
|
# compat: +ash +bash +dash +hush +ksh +mksh +oksh +osh +posh +yash +zsh
|
2021-07-29 00:37:35 -07:00
|
|
|
|
2021-07-30 19:41:16 -07:00
|
|
|
ff() { ### @-
|
2021-08-02 06:06:13 -07:00
|
|
|
### 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
|
|
|
}
|
|
|
|
|
2021-08-02 13:48:46 -07:00
|
|
|
[ -n "${preload+-}" ] || ff "$@"
|