Xxd: Unterschied zwischen den Versionen
Zeile 175: | Zeile 175: | ||
= Manpage = | = Manpage = | ||
Version vom 17. April 2023, 09:45 Uhr
xxd - make a hexdump or do the reverse
Beschreibung
xxd creates a hex dump of a given file or standard input. It can also convert a hex dump back to its original binary form. Like uuencode(1) and uudecode(1) it allows the transmission of binary data in a `mail-safe' ASCII representation, but has the advantage of decoding to standard output. Moreover, it can be used to perform binary file patching.
Installation
Syntax
xxd -h[elp] xxd [options] [infile [outfile]] xxd -r[evert] [options] [infile [outfile]]
Optionen
Parameter
Umgebungsvariablen
Exit-Status
0 no errors encountered -1 operation not supported (xxd -r -i still impossible) 1 error while parsing options 2 problems with input file 3 problems with output file 4,5 desired seek position is unreachable
Anwendungen
- Print everything but the first three lines (hex 0x30 bytes) of file.
$ xxd -s 0x30 file
- Print 3 lines (hex 0x30 bytes) from the end of file.
$ xxd -s -0x30 file
- Print 120 bytes as continuous hexdump with 20 octets per line.
$ xxd -l 120 -ps -c 20 xxd.1 2e54482058584420312022417567757374203139 39362220224d616e75616c207061676520666f72 20787864220a2e5c220a2e5c222032317374204d 617920313939360a2e5c22204d616e2070616765 20617574686f723a0a2e5c2220202020546f6e79 204e7567656e74203c746f6e79407363746e7567
- Hexdump the first 120 bytes of this man page with 12 octets per line.
$ xxd -l 120 -c 12 xxd.1 0000000: 2e54 4820 5858 4420 3120 2241 .TH XXD 1 "A 000000c: 7567 7573 7420 3139 3936 2220 ugust 1996" 0000018: 224d 616e 7561 6c20 7061 6765 "Manual page 0000024: 2066 6f72 2078 7864 220a 2e5c for xxd"..\ 0000030: 220a 2e5c 2220 3231 7374 204d "..\" 21st M 000003c: 6179 2031 3939 360a 2e5c 2220 ay 1996..\" 0000048: 4d61 6e20 7061 6765 2061 7574 Man page aut 0000054: 686f 723a 0a2e 5c22 2020 2020 hor:..\" 0000060: 546f 6e79 204e 7567 656e 7420 Tony Nugent 000006c: 3c74 6f6e 7940 7363 746e 7567 <tony@sctnug
- Display just the date from the file xxd.1
$ xxd -s 0x36 -l 13 -c 13 xxd.1 0000036: 3231 7374 204d 6179 2031 3939 36 21st May 1996
- Copy input_file to output_file and prepend 100 bytes of value 0x00.
$ xxd input_file | xxd -r -s 100 > output_file
- Patch the date in the file xxd.1
$ echo "0000037: 3574 68" | xxd -r - xxd.1 $ xxd -s 0x36 -l 13 -c 13 xxd.1 0000036: 3235 7468 204d 6179 2031 3939 36 25th May 1996
- Create a 65537 byte file with all bytes 0x00, except for the last one which is 'A' (hex 0x41).
$ echo "010000: 41" | xxd -r > file
- Hexdump this file with autoskip
$ xxd -a -c 12 file 0000000: 0000 0000 0000 0000 0000 0000 ............ * 000fffc: 0000 0000 40 ....A
- Create a 1 byte file containing a single 'A' character. The number after '-r -s' adds to the linenumbers found in the file; in effect, the leading bytes are suppressed.
$ echo "010000: 41" | xxd -r -s -0x10000 > file
- Use xxd as a filter within an editor such as vim(1) to hexdump a region marked between `a' and `z'.
:'a,'z!xxd
- Use xxd as a filter within an editor such as vim(1) to recover a binary hexdump marked between `a' and `z'.
:'a,'z!xxd -r
- Use xxd as a filter within an editor such as vim(1) to recover one line of a hexdump. Move the cursor over the line and type
!!xxd -r
- Read single characters from a serial line
$ xxd -c1 < /dev/term/b & $ stty < /dev/term/b -echo -opost -isig -icanon min 1 $ echo -n foo > /dev/term/b
Hinwiese
xxd -r hat bei der Auswertung von Zeilennummerninformationen einige eingebaute Magie. Wenn die Ausgabedatei durchsuchbar ist, dann können die Zeilennummern am Anfang einer jeden hexdump-Zeile möglicherweise nicht in der richtigen Reihenfolge, es können Zeilen fehlen oder sich überschneiden. In diesen Fällen springt xxd mit lseek(2) an die nächste Position. Wenn die Ausgabedatei nicht durchsuchbar ist, sind nur Lücken erlaubt, die mit Null-Bytes gefüllt werden.
xxd -r erzeugt niemals Parse-Fehler. Garbage wird stillschweigend übersprungen.
Beim Editieren von Hexdumps ist zu beachten, dass xxd -r alles in der Eingabezeile überspringt, nachdem genügend Spalten mit hexadezimalen Daten gelesen wurden (siehe Option -c). Das bedeutet auch, dass Änderungen an den druckbaren ascii (oder ebcdic) Spalten immer ignoriert werden. Das Rückgängigmachen eines Hexdumps im einfachen (oder Postscript-) Stil mit xxd -r -p hängt nicht von der korrekten Anzahl der Spalten ab. Hier wird alles interpretiert, was wie ein Paar von Hex-Ziffern aussieht.
Beachten Sie den Unterschied zwischen
$ xxd -i Datei
und
$ xxd -i < Datei
xxd -s +seek kann sich von xxd -s seek unterscheiden, da lseek(2) zum "Zurückspulen" der Eingabe verwendet wird. Ein '+' macht einen Unterschied, wenn die Eingabequelle stdin ist, und wenn die Dateiposition von stdin zu dem Zeitpunkt, zu dem xxd gestartet wird und seine Eingabe erhält, nicht am Anfang der Datei liegt. Die folgenden Beispiele können zur Klärung beitragen (oder weiter verwirren!)...
stdin vor dem Lesen zurückspulen; notwendig, weil `cat' bereits bis zum Ende von stdin gelesen hat.
$ sh -c "cat > plain_copy; xxd -s 0 > hex_copy" < Datei
Hexdump von der Dateiposition 0x480 (=1024+128) an. Das '+'-Zeichen bedeutet "relativ zur aktuellen Position", also addiert die '128' zu den 1k, wo dd aufgehört hat.
$ sh -c "dd of=plain_snippet bs=1k count=1; xxd -s +128 > hex_snippet" < Datei
Hexdump ab Dateiposition 0x100 ( = 1024-768) auf.
$ sh -c "dd of=plain_snippet bs=1k count=1; xxd -s +-768 > hex_snippet" < file
Dies ist jedoch eine seltene Situation, und die Verwendung von "+" ist selten erforderlich. Der Autor zieht es vor, die Wirkung von xxd mit strace(1) oder truss(1) zu überwachen, wenn -s verwendet wird.
Siehe auch
- uuencode(1)
- uudecode(1)
- patch(1)
Unterseiten
Sicherheit
Dokumentation
RFC
Man-Pages
Info-Pages
Links
Einzelnachweise
Projekt
Weblinks
Testfragen
Testfrage 1
Testfrage 2
Testfrage 3
Testfrage 4
Testfrage 5
TMP
Datei in Hexa
$ echo Guten Tag | xxd 00000000: 4775 7465 6e20 5461 670a Guten Tag.
Datei in Binär
$ echo Guten Tag | xxd -b 00000000: 01000111 01110101 01110100 01100101 01101110 00100000 Guten 00000006: 01010100 01100001 01100111 00001010 Tag.