view src/which.sh @ 28978:3c3bdb8069f5 v8.2.5011

patch 8.2.5011: Replacing an autocommand requires several lines Commit: https://github.com/vim/vim/commit/971f6825ee845828bd5c8869487928a3f32cd467 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue May 24 11:40:11 2022 +0100 patch 8.2.5011: Replacing an autocommand requires several lines Problem: Replacing an autocommand requires several lines. Solution: Add the "replace" flag to autocmd_add(). (Yegappan Lakshmanan, closes #10473)
author Bram Moolenaar <Bram@vim.org>
date Tue, 24 May 2022 12:45:05 +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