view src/which.sh @ 34698:e5d2d9024ad6 v9.1.0229

patch 9.1.0229: Error E877 is not translated Commit: https://github.com/vim/vim/commit/b64cec217f3434a089a5677d265bfbc21367e98b Author: Christian Brabandt <cb@256bit.org> Date: Sun Mar 31 17:52:56 2024 +0200 patch 9.1.0229: Error E877 is not translated Problem: Error E877 is not translated (RestorerZ) Solution: Declare the error with N_ to mark it as translatable, add _() around the error message in regexp_nfa.c fixes: #14333 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 31 Mar 2024 18:00: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