You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

csstidy-linux.sh 138B

1234567
  1. #!/bin/sh
  2. bin/csstidy-linux $1 $1 1>>$1.log 2>>$1.log
  3. grep -i invalid $1.log
  4. grep -i error $1.log
  5. grep -i warning $1.log
  6. rm $1.log
  7. exit 0