1 Star 1 Fork 0

期期 / sqlite-jdbc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
amalgamation_version.sh 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
James Moger 提交于 2014-11-19 14:56 . Update SQLite engine to 3.8.7.2
#!/usr/bin/env bash
# Used to generate the version for the amalgamation download zip.
# http://www.sqlite.org/download.html#encoding
# The version is encoded so that filenames sort in order of increasing version number when viewed using "ls".
# For version 3.X.Y the filename encoding is 3XXYY00. For branch version 3.X.Y.Z, the encoding is 3XXYYZZ.
version=""
i=0
export IFS="."
for num in $1; do
if [ $i -gt 0 ]; then
if [ $num -le 9 ]; then
eval num=0$num
fi
fi
eval version=$version$num
let i+=1
done
unset IFS
if [ $i -gt 3 ]; then
echo "$version"
else
echo "$version"00
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/jiang516/sqlite-jdbc.git
git@gitee.com:jiang516/sqlite-jdbc.git
jiang516
sqlite-jdbc
sqlite-jdbc
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891