view src/which.sh @ 22673:67aa7507ea2e v8.2.1885

patch 8.2.1885: filetype tests unnessarily creates swap files Commit: https://github.com/vim/vim/commit/2733779a1a36c06f5f900666ac94bfe4c25ea39b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 22 12:33:32 2020 +0200 patch 8.2.1885: filetype tests unnessarily creates swap files Problem: Filetype tests unnessarily creates swap files. Solution: Disable 'swapfile'. (Ken Takata, closes https://github.com/vim/vim/issues/7183)
author Bram Moolenaar <Bram@vim.org>
date Thu, 22 Oct 2020 12:45:05 +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