You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/lib/available.fish

10 lines
206 B
Fish

# SYNOPSIS
# available [name]
#
# OVERVIEW
# Check if a function or program is available.
function available -a name -d "Check if a function or program is available."
type "$name" ^/dev/null >&2
end