view src/which.sh @ 22474:542682b758dc v8.2.1785

patch 8.2.1785: compiler warning for strcp() out of bounds Commit: https://github.com/vim/vim/commit/3f974ff45e0ea4b85fea7d8768f005d8a2c7941e Author: Bram Moolenaar <Bram@vim.org> Date: Fri Oct 2 18:11:56 2020 +0200 patch 8.2.1785: compiler warning for strcp() out of bounds Problem: Compiler warning for strcp() out of bounds. (Christian Brabandt) Solution: use memmove() instead.
author Bram Moolenaar <Bram@vim.org>
date Fri, 02 Oct 2020 18:15:15 +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