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.

13 lines
257 B

  1. BEGIN {
  2. FS="\t"
  3. printf "if exist \\tmp\\warning.out del \\tmp\\warning.out\n"
  4. }
  5. {
  6. if ($0 !~ /^;/)
  7. {
  8. printf "cd %s\n",$1
  9. printf "if exist _tgtType_???.wrn echo \t%s.%s (%s)>> \\tmp\\warning.out\n",$2,$3,$8
  10. }
  11. }