animation/fourcell/notes/identify.sh

18 lines
464 B
Bash
Raw Normal View History

2023-02-20 03:46:26 +00:00
#/bin/bash
platform () {
if [ "$(uname)" == "Darwin" ]; then
echo "Mac"
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
echo "Linux"
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
echo "Windows (32bit)"
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
echo "Windows"
fi
}
echo "PLATFORM: $(platform)"
echo "PYTHON: $(python3 --version)"
echo "OPENCV: $(python3 ./notes/opencv_version.py)"