mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-07 00:02:14 +08:00
7 lines
157 B
Bash
7 lines
157 B
Bash
#!/bin/bash
|
|
|
|
PY_VERSION=`python -V 2>&1|awk '{print $2}'|awk -F '.' '{print $1}'`
|
|
echo $PY_VERSION
|
|
if [ "$PY_VERSION" == "Python 3.10.1" ]; then
|
|
echo ok
|
|
fi |