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