view src/which.sh @ 24004:90fbe1a3b23c v8.2.2544

patch 8.2.2544: Vim9: error for argument when checking for lambda Commit: https://github.com/vim/vim/commit/bc327ccc3dd408463fc74266f57b879888a13e51 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 23 12:05:46 2021 +0100 patch 8.2.2544: Vim9: error for argument when checking for lambda Problem: Vim9: error for argument when checking for lambda. Solution: Respect the skip flag. (closes https://github.com/vim/vim/issues/7887)
author Bram Moolenaar <Bram@vim.org>
date Tue, 23 Feb 2021 12:15: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