From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4846 invoked by alias); 22 Jun 2015 05:34:04 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 20262 Received: (qmail 25722 invoked from network); 22 Jun 2015 05:34:02 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 Message-ID: <55879C40.9020102@necoro.eu> Date: Mon, 22 Jun 2015 07:25:20 +0200 From: lists@necoro.eu User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Meino.Cramer@gmx.de, zsh-users@zsh.org Subject: Re: ls -l *(/)... References: <20150622031753.GA4342@solfire> In-Reply-To: <20150622031753.GA4342@solfire> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit > Then I tried > > ls -ld *(/)/. Note that you do not need the '(/)' in the middle, because ls -l */* will not match non-directories in the top-directory (only difference I see, that it'll also match symbolic links to directories). So: If you do not have symlinks to dirs in the topdir, ls */* is what you are looking for :) - René