5 Star 0 Fork 8

OpenCloudOS Stream/thunderbird

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get-calendar-langpacks.sh 850 Bytes
一键复制 编辑 原始数据 按行查看 历史
rockerzhu 提交于 2023-07-12 16:30 . upgrade to 102.12.0
#!/bin/bash
#set -x
set -e
usage()
{
cat << EOF
usage: $0 options
This script downloads calendar langpacks for Thunderbird.
OPTIONS:
-h Show this message
-v Version string (102.12.0)
EOF
}
VER=
while getopts “hv:” OPTION
do
case $OPTION in
h)
usage
exit 1
;;
v)
VER=$OPTARG
;;
?)
usage
exit
;;
esac
done
if [ -z "$VER" ]
then
echo "Missing version."
usage
exit 1
fi
LANG_DIR=thunderbird-langpacks
mkdir -p ${LANG_DIR}
cd ${LANG_DIR}
wget -r -c -nd -np -nH -R index.html* https://archive.mozilla.org/pub/thunderbird/releases/${VER}/linux-x86_64/xpi/
cd ..
echo "Creating ${LANG_DIR}-${VER}.tar.xz ..."
tar cJf ${LANG_DIR}-${VER}.tar.xz ${LANG_DIR}
rm -rf ${LANG_DIR}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/opencloudos-stream/thunderbird.git
git@gitee.com:opencloudos-stream/thunderbird.git
opencloudos-stream
thunderbird
thunderbird
master

搜索帮助