view src/which.sh @ 22125:602e660d5ccf v8.2.1612

patch 8.2.1612: Vim9: cannot pass "true" to prop_remove() Commit: https://github.com/vim/vim/commit/a5a40c569695a750cace7d29824101ec8ef2b48f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 5 20:50:49 2020 +0200 patch 8.2.1612: Vim9: cannot pass "true" to prop_remove() Problem: Vim9: cannot pass "true" to prop_remove(). Solution: Use dict_get_bool(). (closes https://github.com/vim/vim/issues/6853)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Sep 2020 21:00:03 +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