view src/which.sh @ 30887:cf89c4a14066

Added tag v9.0.0777 for changeset 74e64f3a54ef3c91825e39a1d4317058c1ccc22b
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Oct 2022 22:45:03 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# which.sh -- find where an executable is located.  It's here because the
# "which" command is not supported everywhere.  Used by Makefile.

IFS=":"
for ac_dir in $PATH; do
	if test -f "$ac_dir/$1"; then
		echo "$ac_dir/$1"
		break
	fi
done