view src/which.sh @ 21835:b530ead4265a v8.2.1467

patch 8.2.1467: Vim9: :echomsg doesn't like a dict argument Commit: https://github.com/vim/vim/commit/e5abf7af08ff69e7e038c067497f080d4e44332c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 16 18:29:35 2020 +0200 patch 8.2.1467: Vim9: :echomsg doesn't like a dict argument Problem: Vim9: :echomsg doesn't like a dict argument. Solution: Convert arguments like in legacy script. (closes https://github.com/vim/vim/issues/6717)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Aug 2020 18:30:04 +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