view src/which.sh @ 31684:8153d73088f2 v9.0.1174

patch 9.0.1174: smali files are not recognized Commit: https://github.com/vim/vim/commit/9a9432d3a223f7fbd902a0346030422ae0a97f0e Author: Amaan Q <amaanq12@gmail.com> Date: Tue Jan 10 19:58:35 2023 +0000 patch 9.0.1174: smali files are not recognized Problem: Smali files are not recognized. Solution: Add a pattern for Smali files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/11801)
author Bram Moolenaar <Bram@vim.org>
date Tue, 10 Jan 2023 21:00:04 +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