Skip to content

Instantly share code, notes, and snippets.

@mach3
Created October 28, 2010 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mach3/74d81567a90504c95ad4 to your computer and use it in GitHub Desktop.
Save mach3/74d81567a90504c95ad4 to your computer and use it in GitHub Desktop.
Windows Batch File to use YUI Compressor easily
@echo off
if "%1" == "" goto error
setlocal
set jarfile="C:\Program Files\yuicompressor-2.4.2\build\yuicompressor-2.4.2.jar"
set infile=%1
set ext=%~x1
if %ext% == .css set outfile=%infile:.css=.min.css%
if %ext% == .js set outfile=%infile:.js=.min.js%
java -jar %jarfile% -v --charset UTF-8 -o %outfile% %infile%
endlocal
goto end
:error
echo No Argument
:end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment