view src/which.sh @ 20887:5dd8e741060b v8.2.0995

patch 8.2.0995: insufficient testing for the readdir() sort option Commit: https://github.com/vim/vim/commit/e17f8817a1713a1ef20257c777a483b7ab57a841 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 17 20:30:44 2020 +0200 patch 8.2.0995: insufficient testing for the readdir() sort option Problem: Insufficient testing for the readdir() sort option. Solution: Add a few more tests. (Christian Brabandt, closes https://github.com/vim/vim/issues/6278)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Jun 2020 20:45: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