view src/which.sh @ 26964:5de60e0d65fa v8.2.4011

patch 8.2.4011: test fails because of changed error number Commit: https://github.com/vim/vim/commit/bb8cac56d9c398a2b546d9c81c15e8c3d8fd811e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 5 18:16:53 2022 +0000 patch 8.2.4011: test fails because of changed error number Problem: Test fails because of changed error number. Solution: Restore old duplicate error message.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Jan 2022 19: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