From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id WAA02013; Tue, 9 Jul 2002 22:15:15 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id WAA01876 for ; Tue, 9 Jul 2002 22:15:14 +0200 (MET DST) Received: from hickory.cc.columbia.edu (hickory.cc.columbia.edu [128.59.59.202]) by nez-perce.inria.fr (8.11.1/8.11.1) with ESMTP id g69KFCH19524 for ; Tue, 9 Jul 2002 22:15:13 +0200 (MET DST) Received: from there (tw304h3.cpmc.columbia.edu [156.111.84.180]) by hickory.cc.columbia.edu (8.9.3/8.9.3) with SMTP id QAA26015 for ; Tue, 9 Jul 2002 16:15:12 -0400 (EDT) Message-Id: <200207092015.QAA26015@hickory.cc.columbia.edu> Content-Type: text/plain; charset="iso-8859-1" From: Oleg To: "caml-list" Subject: Re: [Caml-list] productivity improvement Date: Tue, 9 Jul 2002 16:16:14 -0400 X-Mailer: KMail [version 1.3.2] References: <200207092004.QAA09587@psi-phi.mit.edu> In-Reply-To: <200207092004.QAA09587@psi-phi.mit.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk On Tuesday 09 July 2002 04:04 pm, John Carr wrote: > > [1] cat source | sed "s/ //" | wc -c > > You need a 'g' at the end of the sed command, or use the simpler: > > tr -d ' ' < source | wc -c cat source | sed "s/[[:space:]]//g" | wc -c to catch '\t' too, while we are at it. Oleg ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners