view src/which.sh @ 23358:b3142fc0a414 v8.2.2222

patch 8.2.2222: Vim9: cannot keep script variables when reloading Commit: https://github.com/vim/vim/commit/2b32700dabf392566d8e9fef76e0d587a891ee3e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 26 15:39:31 2020 +0100 patch 8.2.2222: Vim9: cannot keep script variables when reloading Problem: Vim9: cannot keep script variables when reloading. Solution: Add the "noclear" argument to :vim9script.
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Dec 2020 15:45: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