mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-22 07:33:43 +01:00
Do not display where an executable is located
Use only the exit status of the function mywhich to determine which command should be used to remove sysvinit script. Signed-off-by: Matt Darfeuille <matdarf@gmail.com> Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
a7d45e9566
commit
fec967a41d
@ -51,7 +51,6 @@ mywhich() {
|
|||||||
|
|
||||||
for dir in $(split $PATH); do
|
for dir in $(split $PATH); do
|
||||||
if [ -x $dir/$1 ]; then
|
if [ -x $dir/$1 ]; then
|
||||||
echo $dir/$1
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
@ -51,7 +51,6 @@ mywhich() {
|
|||||||
|
|
||||||
for dir in $(split $PATH); do
|
for dir in $(split $PATH); do
|
||||||
if [ -x $dir/$1 ]; then
|
if [ -x $dir/$1 ]; then
|
||||||
echo $dir/$1
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user