view src/which.sh @ 8072:38887bf423ba v7.4.1330

commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 16 13:11:17 2016 +0100 patch 7.4.1330 Problem: fd_read() has an unused argument. Solution: Remove the timeout. (Yasuhiro Matsumoto)
author Christian Brabandt <cb@256bit.org>
date Tue, 16 Feb 2016 13:15:04 +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