view src/which.sh @ 13828:4dece4ef17bd

Added tag v8.0.1785 for changeset 27e09f1a8e5cb1f00ef8bba1c1ed8933d3d86721
author Christian Brabandt <cb@256bit.org>
date Tue, 01 May 2018 17:45:05 +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