SIZE(1)SIZE(1)
size – print size of executable files
size [ file ... ]
Size prints the size of the segments for each of the argument executable files (default v.out). The format is
textsizet + datasized + bsssizeb = total
where the numbers are in bytes.
/sys/src/cmd/size.c
a.out(6)