This file is indexed.

/usr/share/doc/radare-doc/html/Section3.9.html is in radare-doc 1:1.5.2-4.

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
<!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>Undo/redo</title>
<link rel="previous" href="Section3.8.1.html">
<link rel="ToC" href="contents.html">
<link rel="next" href="Section3.10.html">
</head>
<body>
<h1><a name="undo"></a>3.9 Undo/redo</h1>
<p>
The 'u'ndo command is used to undo or redo write changes done on the file.
</p>
<pre><code>&gt; u?
Usage: &gt; u 3   ; undo write change at index 3
       &gt; u -3  ; redo write change at index 3
       &gt; u     ; list all write changes
</code></pre>
<p>
Here's a sample session working with undo writes:
</p>
<pre><code>[0x00000000]&gt; wx 90 90 90 @ 0x100
[0x00000100]&gt; u                        ; list changes 
00 + 3 00000100: 89 90 c4 =&gt; 90 90 90 
</code></pre>
<pre><code>[0x00000000]&gt; p8 3 @ 0x100
90 90 90 
[0x00000000]&gt; u 0
[0x00000000]&gt; p8 3 @ 0x100
89 90 c4 
[0x00000000]&gt; u -0
[0x00000000]&gt; p8 3 @ 0x100
90 90 90 
</code></pre>
<p>
Note: Read 'undo-seek' for seeking history manipulation.
</p>

<!-- version IDs:
$Id: radare.but 2009-04-25 pancake $
-->
</body>
</html>