x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
compress.sh - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\sarrey\videoart\-ANA\CATALOGO\turnjs4\lib\compress.sh
旋转
特效
属性
历史版本
#/bin/sh # Requires Closure Compiler Application # https://developers.google.com/closure/compiler/docs/gettingstarted_app # --compilation_level ADVANCED_OPTIMIZATIONS SCRIPTS=("turn" "turn.html4" "zoom" "scissor") SCRIPTS_LEN=${#SCRIPTS[@]} SCRIPTS_COMMENT="/* turn.js 4.1.0 | Copyright (c) 2012 Emmanuel Garcia | turnjs.com | turnjs.com/license.txt */" echo -e "${SCRIPTS_COMMENT}\n" > comment.js if [ ! -f /tmp/compiler.jar ]; then echo "Downloading Google Closure Compiler..." curl --silent -L http://closure-compiler.googlecode.com/files/compiler-latest.zip > /tmp/compiler-latest.zip unzip -o /tmp/compiler-latest.zip -d /tmp rm /tmp/compiler-latest.zip chmod +x /tmp/compiler.jar fi echo "Making Minimized files..." for (( i=0; i<${SCRIPTS_LEN}; i++ )); do java -jar "/tmp/compiler.jar" --js ${SCRIPTS[$i]}.js > ${SCRIPTS[$i]}.closure.js cat comment.js ${SCRIPTS[$i]}.closure.js > ${SCRIPTS[$i]}.min.js rm ${SCRIPTS[$i]}.closure.js m=$(ls -la ${SCRIPTS[$i]}.min.js | awk '{ print $5}') gzip -nfc --best ${SCRIPTS[$i]}.min.js > ${SCRIPTS[$i]}.min.js.gz g=$(ls -la ${SCRIPTS[$i]}.min.js.gz | awk '{ print $5}') echo " ${SCRIPTS[$i]}.js: $m bytes minified, $g bytes gzipped" rm ${SCRIPTS[$i]}.min.js.gz if [ "--test" == "$1" ]; then rm ${SCRIPTS[$i]}.min.js fi done rm comment.js
compress.sh
网页地址
文件地址
上一页 1/10
下一页
下载
( 1 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.