Skip to content

Instantly share code, notes, and snippets.

@jgdoncel
Created October 2, 2013 13:45
Show Gist options
  • Save jgdoncel/6794043 to your computer and use it in GitHub Desktop.
Save jgdoncel/6794043 to your computer and use it in GitHub Desktop.
Combinar archivos
REM Combinar los archivos js de un directorio
@echo off
pushd "%~1"
echo.>tmp.js
del tmp.js
for /r %%x in (*.js) do (
type "%%~x" >> tmp.js
)
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment