Commit e8188807b7cd14e0a001946005f0c58f9dd9dfe6

Authored by Jesper Dangaard Brouer
Committed by Jonathan Corbet
1 parent 74fca6a428

Doc: seq_file.txt fix wrong dd command example.

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

Documentation/filesystems/seq_file.txt
... ... @@ -46,7 +46,7 @@
46 46 following:
47 47  
48 48 dd if=/proc/sequence of=out1 count=1
49   - dd if=/proc/sequence skip=1 out=out2 count=1
  49 + dd if=/proc/sequence skip=1 of=out2 count=1
50 50  
51 51 Then concatenate the output files out1 and out2 and get the right
52 52 result. Yes, it is a thoroughly useless module, but the point is to show