mirror of
https://github.com/coolsnowwolf/lede
synced 2025-01-09 05:17:30 +08:00
12 lines
245 B
Bash
Executable File
12 lines
245 B
Bash
Executable File
#! /bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Reduced version of which -a using command utility
|
|
|
|
case $PATH in
|
|
(*[!:]:) PATH="$PATH:" ;;
|
|
esac
|
|
|
|
for ELEMENT in $(echo $PATH | tr ":" "\n"); do
|
|
PATH=$ELEMENT command -v "$@"
|
|
done
|