7 lines
94 B
Text
7 lines
94 B
Text
#? check if executable exists
|
|
|
|
if [ -x "$(command -v $1)" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|