update README.md with the new cli options
authorXhmikosR <xhmikosr@users.sourceforge.net>
Sat, 9 Feb 2013 10:23:27 +0000 (12:23 +0200)
committerXhmikosR <xhmikosr@users.sourceforge.net>
Sat, 9 Feb 2013 10:24:26 +0000 (12:24 +0200)
README.md

index 67c1239..1e136d6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,13 +27,15 @@ npm install clean-css
 Clean-css accepts the following command line arguments:
 
 ```
-cleancss [options] -o <output-file> <input-file>
+cleancss [options] <source-file>
 ```
-
-* `-e`, `-empty`, `-removeempty` Remove empty declarations (e.g. `.class {}`)
-* `-b`, `-keepbreaks`, `-keeplinebreaks` Keep line breaks
+* `-h`, `--help` output usage information
+* `-v`, `--version` output the version number
+* `-e`, `--remove-empty` Remove empty declarations (e.g. `a{}`)
+* `-b`, `--keep-line-breaks` Keep line breaks
 * `--s0` Remove all special comments (i.e. `/*! special comment */`)
 * `--s1` Remove all special comments but the first one
+* `-o`, `--output [output-file]` Use [output-file] as output instead of stdout
 
 #### Examples: