Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

25 lines
288 B

BEGIN {
Previous=""
Sep=""
}
{
if ($1 != previous) {
if (NR != 1)
printf "\n"
printf "%-25s ", $1
previous = $1
if ($2 == 0) {
printf "%d, ", $3
Sep=""
next
} else {
printf "TERMINAL "
Sep=""
}
}
printf "%s%d", Sep, $2
Sep=", "
}
END {
printf "\n"
}