Преглед на файлове

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>
Jesper Dangaard Brouer преди 16 години
родител
ревизия
e8188807b7
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Documentation/filesystems/seq_file.txt

+ 1 - 1
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:
 following:
 
 
     dd if=/proc/sequence of=out1 count=1
     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
 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
 result. Yes, it is a thoroughly useless module, but the point is to show