mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
6fd0f3cff2
subrepo: subdir: "tools/fado" merged: "a0fa82808" upstream: origin: "git@github.com:EllipticEllipsis/fado.git" branch: "master" commit: "a0fa82808" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
16 lines
311 B
Bash
Executable file
16 lines
311 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for i in "${@:2}"
|
|
do
|
|
RESULT=$(IFS=:;find $PATH -maxdepth 1 -name "$i" -print -quit 2> /dev/null | grep -o '[^/]*$')
|
|
COUNT=$(echo "$RESULT" | wc -c)
|
|
|
|
if [ $COUNT -gt 1 ]
|
|
then
|
|
echo $RESULT
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
echo $1
|
|
exit 0
|