view src/which.sh @ 8599:ddb04cbe1e0c v7.4.1589

commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 17 23:13:28 2016 +0100 patch 7.4.1589 Problem: Combining dict and args with partial doesn't always work. Solution: Use the arguments from the partial.
author Christian Brabandt <cb@256bit.org>
date Thu, 17 Mar 2016 23:15:05 +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