projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74fca6a
)
Doc: seq_file.txt fix wrong dd command example.
author
Jesper Dangaard Brouer
<hawk@comx.dk>
Tue, 26 May 2009 13:18:52 +0000
(15:18 +0200)
committer
Jonathan Corbet
<corbet@lwn.net>
Thu, 10 Sep 2009 20:33:35 +0000
(14:33 -0600)
Small error in the "dd" command example, "out=" should be "of=".
Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/filesystems/seq_file.txt
patch
|
blob
|
history
diff --git
a/Documentation/filesystems/seq_file.txt
b/Documentation/filesystems/seq_file.txt
index b843743aa0b5928630771a0ba6e22ec65c206654..0d15ebccf5b037a6590ee8ab9c616172d28cdf82 100644
(file)
--- a/
Documentation/filesystems/seq_file.txt
+++ b/
Documentation/filesystems/seq_file.txt
@@
-46,7
+46,7
@@
better to do. The file is seekable, in that one can do something like the
following:
dd if=/proc/sequence of=out1 count=1
- dd if=/proc/sequence skip=1 o
ut
=out2 count=1
+ dd if=/proc/sequence skip=1 o
f
=out2 count=1
Then concatenate the output files out1 and out2 and get the right
result. Yes, it is a thoroughly useless module, but the point is to show