1 Star 0 Fork 1

bowangwifi/chillispot

forked from biiigfish/chillispot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
version 454 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
#
# Little shell script to grab current version number from configure.in
#
# $Id: version,v 1.1.1.1 2004/04/02 18:55:11 jj Exp $
VER=`grep AC_INIT configure.in | awk -F'[(),]' '{print $3}'`
if [ "$1" == "-VERSION" ]
then
echo $VER | awk -F'.' '{print $1}'
exit
fi
if [ "$1" == "-PATCHLEVEL" ]
then
echo $VER | awk -F'.' '{print $2}'
exit
fi
if [ "$1" == "-SUBLEVEL" ]
then
echo $VER | awk -F'.' '{print $3}'
exit
fi
echo $VER
exit
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bowangwfifi/chillispot.git
git@gitee.com:bowangwfifi/chillispot.git
bowangwfifi
chillispot
chillispot
master

搜索帮助