博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第 6 章 minifier
阅读量:6475 次
发布时间:2019-06-23

本文共 1522 字,大约阅读时间需要 5 分钟。

#!/bin/bashcd /usr/local/src/wget https://github.com/yui/yuicompressor/releases/download/v2.4.8/yuicompressor-2.4.8.jarmv yuicompressor-2.4.8.jar /usr/local/libexec/cat >> /usr/local/bin/yuicompressor <<'EOF'java -jar /usr/local/libexec/yuicompressor-2.4.8.jar $@EOFchmod +x /usr/local/bin/yuicompressor
$ yuicompressorYUICompressor Version: 2.4.8Usage: java -jar yuicompressor-2.4.8.jar [options] [input file]Global Options  -V, --version             Print version information  -h, --help                Displays this information  --type 
Specifies the type of the input file --charset
Read the input file using
--line-break
Insert a line break after the specified column number -v, --verbose Display informational messages and warnings -o
Place the output into
. Defaults to stdout. Multiple files can be processed using the following syntax: java -jar yuicompressor.jar -o '.css$:-min.css' *.css java -jar yuicompressor.jar -o '.js$:-min.js' *.jsJavaScript Options --nomunge Minify only, do not obfuscate --preserve-semi Preserve all semicolons --disable-optimizations Disable all micro optimizationsIf no input file is specified, it defaults to stdin. In this case, the 'type'option is required. Otherwise, the 'type' option is required only if the inputfile extension is neither 'js' nor 'css'.

原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

你可能感兴趣的文章
并查集(删除) UVA 11987 Almost Union-Find
查看>>
记忆化搜索(DFS+DP) URAL 1501 Sense of Beauty
查看>>
Codeforces Round #295 (Div. 2)
查看>>
暴力 BestCoder Round #41 1001 ZCC loves straight flush
查看>>
航院5538:House Building
查看>>
【CSS系列】图像映射
查看>>
【Spring源码分析系列】加载Bean
查看>>
Selenium获取input值的两种方法:WebElement.getAttribute("value")和WebElement.getText()
查看>>
elasticsearch安装与使用(2)-- centos7 安装测试的集群工具elasticsearch head
查看>>
大数据(12) - Scala安装与IDE相关配置
查看>>
virtualenv的使用
查看>>
1068. 万绿丛中一点红(20)
查看>>
WCF -- Duplex双工通信
查看>>
c# 扩展方法奇思妙用基础篇九:Expression 扩展
查看>>
从C到iOS基础知识各阶段的书籍及提高实战图书推荐
查看>>
原型链上的call方法集合
查看>>
深入研究HTML5实现图片压缩上传
查看>>
2016-7-12
查看>>
HDU 1698
查看>>
UCOS-III API函数
查看>>