From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7821 invoked from network); 10 Jul 2005 16:13:17 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 10 Jul 2005 16:13:17 -0000 Received: (qmail 2651 invoked from network); 10 Jul 2005 16:13:10 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 10 Jul 2005 16:13:10 -0000 Received: (qmail 29950 invoked by alias); 10 Jul 2005 16:13:03 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9088 Received: (qmail 29941 invoked from network); 10 Jul 2005 16:13:02 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 10 Jul 2005 16:13:02 -0000 Received: (qmail 1651 invoked from network); 10 Jul 2005 16:13:02 -0000 Received: from vms042pub.verizon.net (206.46.252.42) by a.mx.sunsite.dk with SMTP; 10 Jul 2005 16:12:58 -0000 Received: from candle.brasslantern.com ([71.116.88.149]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2 HotFix 0.04 (built Dec 24 2004)) with ESMTPA id <0IJF00BJJ6DJ6OA7@vms042.mailsrvcs.net> for zsh-users@sunsite.dk; Sun, 10 Jul 2005 11:12:56 -0500 (CDT) Received: from candle.brasslantern.com (IDENT:schaefer@localhost [127.0.0.1]) by candle.brasslantern.com (8.12.11/8.12.11) with ESMTP id j6AGCqMB024193 for ; Sun, 10 Jul 2005 09:12:52 -0700 Received: (from schaefer@localhost) by candle.brasslantern.com (8.12.11/8.12.11/Submit) id j6AGCpVR024192 for zsh-users@sunsite.dk; Sun, 10 Jul 2005 09:12:52 -0700 Date: Sun, 10 Jul 2005 16:12:51 +0000 From: Bart Schaefer Subject: Re: Asking ZSH: How are you ? In-reply-to: <20050710.063055.74755058.Meino.Cramer@gmx.de> To: zsh-users@sunsite.dk Message-id: <1050710161251.ZM24191@candle.brasslantern.com> MIME-version: 1.0 X-Mailer: Z-Mail (5.0.0 30July97) Content-type: text/plain; charset=us-ascii References: <20050709.165213.74740823.Meino.Cramer@gmx.de> <1050709160747.ZM17624@candle.brasslantern.com> <20050710.063055.74755058.Meino.Cramer@gmx.de> Comments: In reply to Meino Christian Cramer "Re: Asking ZSH: How are you ?" (Jul 10, 6:30am) X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.6 required=6.0 tests=BAYES_00 autolearn=ham version=3.0.2 X-Spam-Hits: -2.6 On Jul 10, 6:30am, Meino Christian Cramer wrote: } Subject: Re: Asking ZSH: How are you ? } } alias } } given on the commandline gives me a lot more aliasses defined as } reported by "reporter all" (only dumps two aliasses) Let me guess: alias run-help=man alias which-command=whence I suspect you're not using reporter correctly. Those are the two built- in aliases. You can't run "reporter" as a shell script. (Well, you can, but it won't give the correct results; it'll tell you what's in your /etc/zshenv, and not much else.) It has to be either read into the current shell with the "." or "source" commands, or autoloaded and then run as a shell function. E.g. source reporter aliases