Gitiles
Code Review
Sign In
review.blissroms.org
/
platform_external_bash
/
refs/heads/n2
/
.
/
examples
/
functions
/
inpath
blob: cb4c93da336d2dfc9206f3ebe3316badb11ecba7 [
file
] [
log
] [
blame
]
inpath
()
{
local
PROG
path
=
$
(
echo $PATH
|
sed
's/^:/.:/
s/::/:.:/g
s/:$/:./
s/:/ /g'
)
for
x
in
$path
do
[
-
x $x
/
$1
]
&&
{
PROG
=
$x
/
$1
;
break
;
}
done
[
-
n
"$PROG"
]
}