cdist/cdist/conf/type/__package_pip/explorer/pip

11 lines
132 B
Plaintext
Raw Normal View History

2020-09-18 16:33:36 +00:00
#!/bin/sh -e
for bin in pip3 pip
do
if check="$( command -v "$bin" )"
then
echo "$check"
break
fi
done