Leaked source code of windows server 2003
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.

26 lines
473 B

  1. BEGIN{
  2. i = 0
  3. }
  4. {
  5. if ( $0 ~ /does not exist/ )
  6. {
  7. ++i
  8. }
  9. }
  10. END{
  11. if (i == 0)
  12. {
  13. print "set subject=%bldProject% Build (%bldBldNumber%) Copy Completed OK!"
  14. print "echo Well, looks as though everything was built and copied fine! Hammer wishes >> chkbuild.out"
  15. print "echo you a very good build and a great day! >> chkbuild.out"
  16. }
  17. else
  18. print "set subject=%bldProject% Build (%bldBldNumber%) Copy Status - FILES MISSING!"
  19. }