From patchwork Tue May 26 13:18:52 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jesper Dangaard Brouer X-Patchwork-Id: 27662 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@bilbo.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (ozlabs.org [203.10.76.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.ozlabs.org", Issuer "CA Cert Signing Authority" (verified OK)) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4AAE5B7066 for ; Tue, 26 May 2009 23:53:15 +1000 (EST) Received: by ozlabs.org (Postfix) id 3C710DE10C; Tue, 26 May 2009 23:53:15 +1000 (EST) Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id D30ADDE10B for ; Tue, 26 May 2009 23:53:14 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753174AbZEZNxF (ORCPT ); Tue, 26 May 2009 09:53:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753331AbZEZNxE (ORCPT ); Tue, 26 May 2009 09:53:04 -0400 Received: from lanfw001a.cxnet.dk ([87.72.215.196]:45240 "EHLO lanfw001a.cxnet.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752967AbZEZNxD (ORCPT ); Tue, 26 May 2009 09:53:03 -0400 Received: from hotlava.cxnet.dk (unknown [172.31.4.152]) by lanfw001a.cxnet.dk (Postfix) with ESMTP id 77C17163819; Tue, 26 May 2009 15:18:52 +0200 (CEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by hotlava.cxnet.dk (Postfix) with ESMTP id 79F7B45C066; Tue, 26 May 2009 15:18:52 +0200 (CEST) From: Jesper Dangaard Brouer Subject: [PATCH 1/2] Doc: seq_file.txt fix wrong dd command example. To: "David S. Miller" Cc: netdev@vger.kernel.org, netfilter-devel@vger.kernel.org, "Patrick McHardy" , "Jonathan Corbet" , Jesper Dangaard Brouer Date: Tue, 26 May 2009 15:18:52 +0200 Message-ID: <20090526131852.7377.68330.stgit@localhost> User-Agent: StGIT/0.14.2 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Small error in the "dd" command example, "out=" should be "of=". Signed-off-by: Jesper Dangaard Brouer --- Documentation/filesystems/seq_file.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/Documentation/filesystems/seq_file.txt b/Documentation/filesystems/seq_file.txt index b843743..0d15ebc 100644 --- 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 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