view src/which.sh @ 31361:abb9d25924d8 v9.0.1014

patch 9.0.1014: zir files are not recognized Commit: https://github.com/vim/vim/commit/25201016d5043954689a4c9f7833935294149404 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 5 21:40:39 2022 +0000 patch 9.0.1014: zir files are not recognized Problem: Zir files are not recognized. Solution: Add a pattern for Zir files. (closes https://github.com/vim/vim/issues/11664)
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Dec 2022 22: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