Mozilla/mozilla/tools/footprint/create_dat.awk
curt%scruznet.com acb00daf4e New.
git-svn-id: svn://10.0.0.236/trunk@84025 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-23 00:56:39 +00:00

18 lines
411 B
Awk

BEGIN { COUNT = 1
if (TYPE == "") TYPE = "vms";
}
/^[0-9]/ { if (TYPE == "vms") print COUNT, $1;
else if (TYPE == "vmd") print COUNT, $2;
else if (TYPE == "vml") print COUNT, $3;
else if (TYPE == "rss") print COUNT, $4;
COUNT = COUNT + 1;
}
/^ / { print COUNT, "0";
COUNT = COUNT + 1; \
}