From 55970a7e21f4f5caba51ad2caec08475e9c1dc08 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:55:55 +0100 Subject: [PATCH] objdump: add Dutch translation (#11776) --- pages.nl/common/objdump.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.nl/common/objdump.md diff --git a/pages.nl/common/objdump.md b/pages.nl/common/objdump.md new file mode 100644 index 000000000..b6cb47f56 --- /dev/null +++ b/pages.nl/common/objdump.md @@ -0,0 +1,24 @@ +# objdump + +> Bekijk informatie over object bestanden. +> Meer informatie: . + +- Toon de bestand header informatie: + +`objdump -f {{binary}}` + +- Toon alle header informatie: + +`objdump -x {{binary}}` + +- Toon de gedemonteerde uitvoer van uitvoerbare secties: + +`objdump -d {{binary}}` + +- Toon de gedemonteerde uitvoer van uitvoerbare secties in intel syntax: + +`objdump -M intel -d {{binary}}` + +- Toon een complete binary hex dump van alle secties: + +`objdump -s {{binary}}`