view src/which.sh @ 23474:e4906ec48336

Added tag v8.2.2279 for changeset ad83c0ff34c0a8d5a052a120b32df6a1908c9add
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Jan 2021 18:30:04 +0100
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