view src/which.sh @ 30447:db70368fd2b9 v9.0.0559

patch 9.0.0559: timer test may get stuck at hit-enter prompt Commit: https://github.com/vim/vim/commit/4ecf16bbf951f10fd32c918c9d8bc004b7f8f7c9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 23 18:22:21 2022 +0100 patch 9.0.0559: timer test may get stuck at hit-enter prompt Problem: Timer test may get stuck at hit-enter prompt. Solution: Feed some more characters.
author Bram Moolenaar <Bram@vim.org>
date Fri, 23 Sep 2022 19:30: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