From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: request for review: Doing direct file I/O in Emacs Lisp Date: Sun, 16 May 2004 09:20:11 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <87isf0vjtl.fsf@emptyhost.emptydomain.de> <87sme3b88m.fsf@emptyhost.emptydomain.de> <86oeop7j05.fsf@slowfox.dyndns.org> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1084713931 436 80.91.224.253 (16 May 2004 13:25:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 16 May 2004 13:25:31 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sun May 16 15:25:17 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BPLdk-0001hq-00 for ; Sun, 16 May 2004 15:25:16 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BPLdk-0002yK-01 for ; Sun, 16 May 2004 15:25:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BPLZT-0002lY-WE for emacs-devel@quimby.gnus.org; Sun, 16 May 2004 09:20:52 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BPLZO-0002lO-NP for emacs-devel@gnu.org; Sun, 16 May 2004 09:20:46 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BPLYq-0002he-Af for emacs-devel@gnu.org; Sun, 16 May 2004 09:20:43 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BPLYq-0002hV-32 for emacs-devel@gnu.org; Sun, 16 May 2004 09:20:12 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1BPLYp-0001DT-OB; Sun, 16 May 2004 09:20:11 -0400 Original-To: Kai Grossjohann In-reply-to: <86oeop7j05.fsf@slowfox.dyndns.org> (message from Kai Grossjohann on Sat, 15 May 2004 18:27:54 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:23532 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23532 > What about "ls foo | grep bla"? Then the output isn't a file. > > Then you could put the ls output in a buffer and feed it to grep. > That would work fine. But then, you would have to wait until ls is finished. It would be very useful to be able to see partial results while the command is running. You could feed the output to grep in whatever size chunk you like.