From e5ba7088c7d2dc696cefc23add4c554b5567ca63 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:57:12 +0100 Subject: [PATCH] strings: add Dutch translation (#11775) --- pages.nl/common/strings.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.nl/common/strings.md diff --git a/pages.nl/common/strings.md b/pages.nl/common/strings.md new file mode 100644 index 000000000..cf12d10b0 --- /dev/null +++ b/pages.nl/common/strings.md @@ -0,0 +1,20 @@ +# strings + +> Vind printbare strings in een object bestand of binary. +> Meer informatie: . + +- Print alle strings in een binary: + +`strings {{pad/naar/bestand}}` + +- Limiteer resultaten van strings met minimaal n karakters lang: + +`strings -n {{n}} {{pad/naar/bestand}}` + +- Prefix ieder resultaat met de offset in het bestand: + +`strings -t d {{pad/naar/bestand}}` + +- Prefix ieder resultaat met de offset in het bestand als hexadecimaal: + +`strings -t x {{pad/naar/bestand}}`