size 393 B

12345678910111213141516171819202122232425262728
  1. .TH SIZE 1
  2. .SH NAME
  3. size \- print size of executable files
  4. .SH SYNOPSIS
  5. .B size
  6. [
  7. .I file ...
  8. ]
  9. .SH DESCRIPTION
  10. .I Size
  11. prints the size of the segments for each of the argument executable files
  12. (default
  13. .BR v.out ).
  14. The format is
  15. .IP
  16. .IB textsize t
  17. +
  18. .IB datasize d
  19. +
  20. .IB bsssize b
  21. =
  22. .I total
  23. .PP
  24. where the numbers are in bytes.
  25. .SH SOURCE
  26. .B /sys/src/cmd/size.c
  27. .SH "SEE ALSO
  28. .IR a.out (6)