command line - How to pass a local file name to css-validator.jar? -
command line - How to pass a local file name to css-validator.jar? -
i'm trying open file filesystem css-validator.jar. tried:
java -jar css-validator.jar c:\filename and java -jar css-validator.jar file:\\\filename
but neither worked.
what doing wrong?
figured out on own: command used in directory of jar this:
java -jar css-validator.jar -output gnu file:///"directory of file"\"name of css file".css you can add together > or >> , text type file extension (.txt, .html, .xml, .doc[but not .docx]) output file. gnu can text, xml, or couple other formats.
command-line css-validator
Comments
Post a Comment