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

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