view src/which.sh @ 21775:6922d78b4d52 v8.2.1437

patch 8.2.1437: Vim9: 'statusline' is evaluated using Vim9 script syntax Commit: https://github.com/vim/vim/commit/c9edd6b58218d25bfc5389af901021dc0eb82578 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 12 22:18:23 2020 +0200 patch 8.2.1437: Vim9: 'statusline' is evaluated using Vim9 script syntax Problem: Vim9: 'statusline' is evaluated using Vim9 script syntax. Solution: Always use legacy script syntax.
author Bram Moolenaar <Bram@vim.org>
date Wed, 12 Aug 2020 22:30:07 +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