/usr/share/doc/radare-doc/html/Section3.5.1.html is in radare-doc 1:1.5.2-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=US-ASCII">
<title>Hexadecimal</title>
<link rel="previous" href="Section3.5.html">
<link rel="ToC" href="contents.html">
<link rel="next" href="Section3.5.2.html">
</head>
<body>
<h1><a name="print-hexa"></a>3.5.1 Hexadecimal</h1>
<p>
User-friendly way:
</p>
<pre><code>[0x4A13B8C0]> px
offset 0 1 2 3 4 5 6 7 8 9 A B C D E F 0123456789ABCDEF
0x4A13B8C0, 89e0 e839 0700 0089 c7e8 e2ff ffff 81c3 ...9............
0x4A13B8D0, eea6 0100 8b83 08ff ffff 5a8d 2484 29c2 ..........Z.$.).
</code></pre>
<p>
Hexpairs:
</p>
<pre><code>[0x4A13B8C0]> p1
89 e0 e8 39 07 00 00 89 c7 e8 e2 ff ff ff 81 c3 ee a6 01 00 8b 83 08 ff ff ff 5a 8d 24 84 29 c2
</code></pre>
<p>
Basic size types governed by endian:
</p>
<p>
16 bit words
</p>
<pre><code>[0x4A13B8C0]> p2 4
0xe089
0x39e8
</code></pre>
<p>
32 bit doublewords
</p>
<pre><code>[0x4A13B8C0]> p4 4
0x39e8e089
[0x4A13B8C0]> e cfg.bigendian
false
[0x4A13B8C0]> e cfg.bigendian = true
[0x4A13B8C0]> p4 4
0x89e0e839
[0x4A13B8C0]>
</code></pre>
<p>
64 bit dwords
</p>
<pre><code>[0x08049A80]> p8 16
31 ed 5e 89 e1 83 e4 f0 50 54 52 68 60 9e 05 08
[0x08049A80]> p64 16
0x31ed5e89e183e4f0
0x50545268609e0508
</code></pre>
<!-- version IDs:
$Id: radare.but 2009-04-25 pancake $
-->
</body>
</html>
|