summaryrefslogtreecommitdiffstats
path: root/scripts/command_all.sh
blob: 452b66f092b1bb3ab0bcd05938d2714869f5d8ce (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /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