压缩css和js文件 Posted on 2015-08-06 | Edited on 2019-04-09 | In shell 1、下载最新的yuicompressor.jar1https://github.com/yui/yuicompressor/releases 2、运行脚本12345678910111213#!/bin/bashread -p "请输入您要压缩的文件所在的目录 : " dir#if [ ! -n "$1" ] ;thenif [ ! -n "$dir" ] ;then echo "请输入您要压缩的文件所在的目录"; exit;fi# 这里换成css即可for i in `find $dir -name "*.js"`;do echo "compress $i" java -jar /home/june/yuicompressor-2.4.8.jar --charset=utf8 -o $i $i --nomungedone 原文出处:Blog By Blank