我怎么知道 shell size 命令的单位?

How can I know the unit of the shell size command?

size linux 命令的文本单位是什么?

pi@raspberrypi:~/iot_c3 $ size t128
text       data     bss     dec     hex filename
19102       324       8   19434    4bea t128

GNU size 命令的输出单位是字节。 text 段(或代码段)输出包含可执行指令的程序的大小。

textdatabss 部分的总和也等于 dec 字段。