Skip to content

Commit

Permalink
Doc: seq_file.txt fix wrong dd command example.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jesper Dangaard Brouer authored and Jonathan Corbet committed Sep 10, 2009
1 parent 74fca6a commit e818880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/filesystems/seq_file.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 out=out2 count=1
dd if=/proc/sequence skip=1 of=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
Expand Down

0 comments on commit e818880

Please sign in to comment.