1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

strings: add Dutch translation (#11775)

This commit is contained in:
Sebastiaan Speck 2023-12-18 12:57:12 +01:00 committed by GitHub
parent 55970a7e21
commit e5ba7088c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# strings
> Vind printbare strings in een object bestand of binary.
> Meer informatie: <https://manned.org/strings>.
- 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}}`