view src/which.sh @ 28970:77cd4bf3ad7d v8.2.5007

patch 8.2.5007: spell suggestion may use uninitialized memory Commit: https://github.com/vim/vim/commit/6d24b4ff69913270ce1e5267dd6bd8454f75e2b9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 23 12:01:50 2022 +0100 patch 8.2.5007: spell suggestion may use uninitialized memory Problem: Spell suggestion may use uninitialized memory. (Zdenek Dohnal) Solution: Avoid going over the end of the word.
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 May 2022 13:15:04 +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