wzykubek / minifier

Simple script(s) to minify CSS and other type files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

minifier

Description

Collection of scripts to minify files like CSS and other. Scripts removes whitespaces, tabs, comments and new line characters.

Usage

$ minify_css input.css > output.css

Example input file

/* example CSS file to minify */

#container {
  color: rgba(13, 15, 73, 0.5);
  background: none;
  width: 100px;
  height: 100%;
}

Example minified file

#container{color:rgba(13,15,73,0.5);background:none;width:100px;height:100%;}

About

Simple script(s) to minify CSS and other type files.

License:ISC License


Languages

Language:Shell 100.0%