From f6e2f83cf54a987c28a2f29ca6b806d49ddfd85f Mon Sep 17 00:00:00 2001 From: Suyash Bhawsar Date: Sat, 1 Oct 2022 20:46:15 +0530 Subject: [PATCH] size: add page (#8604) --- pages/linux/size.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/size.md diff --git a/pages/linux/size.md b/pages/linux/size.md new file mode 100644 index 000000000..36061ed40 --- /dev/null +++ b/pages/linux/size.md @@ -0,0 +1,20 @@ +# size + +> Displays the sizes of sections inside binary files. +> More information: . + +- Display the size of sections in a given object or executable file: + +`size {{path/to/file}}` + +- Display the size of sections in a given object or executable file in [o]ctal: + +`size {{-o|--radix=8}} {{path/to/file}}` + +- Display the size of sections in a given object or executable file in [d]ecimal: + +`size {{-d|--radix=10}} {{path/to/file}}` + +- Display the size of sections in a given object or executable file in he[x]adecimal: + +`size {{-x|--radix=16}} {{path/to/file}}`