Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试过
java -jar compiler.jar --js jj.js --js_output_file jj.js
输出文件大小为 0。
如果我不想将 .min.js 重命名为 .js,我该怎么办?
编译器不支持这个。我相信下一个版本在覆盖文件之前实际上会失败。
这是不可能的——为了安全起见,尽管下面的 bash 脚本实现了你想要的:
#!/bin/sh for js in $(find ./public_html -name *.js) do java -jar compiler.jar --js $js --js_output_file $js.min mv $js.min $js done