view src/which.sh @ 7292:ac824bb0b755

Added tag v7.4.951 for changeset 6ffc75d807bd056de7dae782196b42b46e35cb48
author Christian Brabandt <cb@256bit.org>
date Thu, 03 Dec 2015 16:45: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