Skip to content

Instantly share code, notes, and snippets.

@i0466lt
i0466lt / minify.sh
Created April 25, 2020 19:03
Comprime script JS ricorsivamente
#!/bin/bash
#
find ./ -type f \
-name "*.js" ! -name "*.min.*" ! -name "vfs_fonts*" \
-exec echo {} \; \
-exec uglifyjs -o {}.min {} \;
for file in ./*.js.min; do