view src/which.sh @ 23394:0098b94e5d08 v8.2.2240

patch 8.2.2240: clientserver test fails if full path is used Commit: https://github.com/vim/vim/commit/41a834d1e3dbf9c8759737bcd6524159a9b93d2a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 28 21:15:16 2020 +0100 patch 8.2.2240: clientserver test fails if full path is used Problem: Clientserver test fails if full path is used. Solution: Ignore the path preceding the file name.
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Dec 2020 21:30:03 +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