view src/which.sh @ 7437:388977454c14 v7.4.1022

commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 1 18:34:39 2016 +0100 patch 7.4.1022 Problem: The README file contains some outdated information. Solution: Update the information about supported systems.
author Christian Brabandt <cb@256bit.org>
date Fri, 01 Jan 2016 18:45:03 +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