From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16217 invoked from network); 7 Aug 1998 15:45:45 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 7 Aug 1998 15:45:45 -0000 Received: (from list@localhost) by math.gatech.edu (8.9.1/8.9.1) id LAA11078; Fri, 7 Aug 1998 11:17:58 -0400 (EDT) Resent-Date: Fri, 7 Aug 1998 11:17:37 -0400 (EDT) To: zsh-users@math.gatech.edu Subject: Redirection (<>) X-No-Archive: yes X-URL: http://www.stud.ifi.uio.no/~jankr/ X-Mail-Copies-To: Never X-Will-Anyone-Ever-See-This: Maybe, but who cares... Sender: jankr@ifi.uio.no Original-Sender: jankr@nntp.ifi.uio.no From: Jan Kroken Date: 07 Aug 1998 17:19:54 +0200 Message-ID: X-Mailer: Gnus v5.3/Emacs 19.34 Resent-Message-ID: <"8QK9W.0.ji2.Hgnor"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/1706 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu >>From zsh.info: `<>WORD' Open file WORD for reading and writing as standard input. If the file does not exist then it is created. and here's what happens when I try to use it. ~/tmp% cat > f a b d f c d c c c d e c d ~/tmp% sed "s/c/f/g" <> f a b d f f d f f f d e f d ~/tmp% cat f a b d f c d c c c d e c d ~/tmp% And my question is; Why does the output from sed go to stdout? What does <> really mean? -- -jk