Skip to content

Instantly share code, notes, and snippets.

@konn
Last active February 7, 2018 05:20
Show Gist options
  • Save konn/de3942ce70b7ee7770c20966c6681571 to your computer and use it in GitHub Desktop.
Save konn/de3942ce70b7ee7770c20966c6681571 to your computer and use it in GitHub Desktop.
locate_bin() {
if [ -n "$1" ]; then
list=$(type -ap "${1}")
if [ $? -eq 0 ]; then
echo "${list}" | head -n1 | awk -F"^${1} is " '{ print $NF }'
else
echo "No binary found: ${1}" 1>&2; return 1;
fi
else
echo "Please specify binary name" 1>&2; return 1;
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment