From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13747 invoked by alias); 23 Oct 2013 12:37:46 -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: 18054 Received: (qmail 15940 invoked from network); 23 Oct 2013 12:37:40 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=bStBJlG8zbrfN6m4+ZH5KzHXau2YdHAUj9mJaL529Zg=; b=BIM5NhXZZWoLy6rtDOkx+PxeC5bdGfcnIE4TxROJCodeWbrrqSYVapBZZy3e/5nsrF EcaGDSSvIEAP35j6MT16F5kzgWDnpSn/Ks3ayD0cs7fAZZU1Gik0wZ/mpi+vBk21hrlw lcy7FAAUA4AD2Y7bjJkAb27JDeO8WnvQIV+wynUxBgjh5DButa15dczAz0B8Cn8H1UDS aCKi3Jgrgahy3AckG9ldz5qeIuEvozcurIo9PdlgNeTrecwgZAqaHzjEQLb0TsJCKTY4 I8TGupDC+a4+H3Fe8pDF31543W393Bsel3k7uOK/n+JVbVE3nGrZbwdpSjQ5gxSlUzBm +bXw== X-Received: by 10.194.171.34 with SMTP id ar2mr407566wjc.81.1382531855927; Wed, 23 Oct 2013 05:37:35 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <91F9ED9F-B198-403B-9FE1-FF40DE960C1C@gmail.com> References: <65DB21EB-86B6-479C-8F25-35B9B832CFD5@gmail.com> <5266BFF6.4050004@oracle.com> <20131023.051117.47078782.ghostrevery@gmail.com> <91F9ED9F-B198-403B-9FE1-FF40DE960C1C@gmail.com> From: =?UTF-8?B?SsOpcsOpbWllIFJvcXVldA==?= Date: Wed, 23 Oct 2013 14:37:20 +0200 Message-ID: Subject: Re: Glob problem To: Brent Briggs Cc: "zsh-users@zsh.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, 2013/10/23 Brent Briggs : > This did the job. I still have one question. I can't find any documentati= on for the "--" option. What does it do exactly? Many programs handle this as a flag that says that subsequent parameters on the command line starting with a dash (=E2=80=9C-=E2=80=9D) a= re not options (while, in general, parameters starting with a dash are options). For example: rm -f # call rm with the =E2=80=9C-f=E2=80=9D option rm -- -f # call rm on the =E2=80=9C-f=E2=80=9D file This is not zsh-specific. Best regards, --=20 J=C3=A9r=C3=A9mie