4 lines
117 B
Bash
4 lines
117 B
Bash
#!/bin/sh
|
|
|
|
# check for existence of fzy. If found, substitute fzf with it.
|
|
type fzy >/dev/null 2>&1 && alias fzf=fzy
|