From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id cc9867da for ; Mon, 19 Aug 2019 19:23:20 +0000 (UTC) Received: (qmail 11930 invoked by alias); 19 Aug 2019 19:23:10 -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: List-Unsubscribe: X-Seq: 24159 Received: (qmail 20454 invoked by uid 1010); 19 Aug 2019 19:23:10 -0000 X-Qmail-Scanner-Diagnostics: from st43p00im-ztbu10073701.me.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.101.2/25545. spamassassin: 3.4.2. Clear:RC:0(17.58.63.183):SA:0(-0.8/5.0):. Processed in 2.953559 secs); 19 Aug 2019 19:23:10 -0000 X-Envelope-From: whereislelouch@icloud.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at icloud.com designates 17.58.63.183 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=icloud.com; s=1a1hai; t=1566242551; bh=uuBP7QJGnjDYcYlk4TjmgYeKI+lANQg2NAZvDwtWRP8=; h=From:Content-Type:Subject:Message-Id:Date:To; b=W9EWBs40gW8J29s0vCvRSfNS5hLy435HA1FfDTVVmHnor4IcjEvSDx3bDY/XAHIly cTCn32ua4zFtHa9DWjb8hp/Ye5AjS+ybhqvYmclsE7X1EW1XoArCklZ384t3kx2qqY 8h+bjDkxIVKYbLETae/ELujhb7T0VjDeN7fwd0TzGUGeud6gajoDbuyqqQxI+Gbb1E AQrem9t1x4nuIRqMBvSiO11ffp+1IXx1VoG4vzQFBMzJ4cECxwkP7utByv6nYpHWzf 0CApUjgDRMeEfukqHuPXygNHpZkXnRBWX7wTjL+Ff+osO0ZF8ZZ1ikublQykmYQ+5C uy+GtBuuMTBLw== From: Aryn Starr Content-Type: multipart/alternative; boundary="Apple-Mail=_395136C5-B431-4FBF-AF68-60138B36E4CB" Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.11\)) Subject: Help wanted with debugging a weird glob behavior Message-Id: <0628A0E5-63F0-481E-AEC2-962658134620@icloud.com> Date: Mon, 19 Aug 2019 23:52:23 +0430 To: zsh-users@zsh.org X-Mailer: Apple Mail (2.3445.104.11) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:,, definitions=2019-08-19_04:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 mlxscore=0 mlxlogscore=566 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1812120000 definitions=main-1908190195 --Apple-Mail=_395136C5-B431-4FBF-AF68-60138B36E4CB Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 I have an album of mp3 files in `/Users/evar/my-music/Songs/Motion = Picture's Soundtracks/More/C=C3=A9cile Corbel - The Secret World Of = Arrietty OST [FLAC]/`. I have put `/Users/evar/my-music/Songs/Motion = Picture's Soundtracks/More/C=C3=A9cile Corbel - The Secret World Of = Arrietty OST [FLAC]/20 - C=C3=A9cile Corbel - Arrietty's Song (original = Japanese version).flac` in the file `path` (to help with reproducibility = of the bug)(file accessible at https://git.io/fjF98 = ). You can see that the address saved in `path` is valid and points to a = file: ``` ~/TMP/zbug $ exa -a --oneline "$(cat path)" /Users/evar/my-music/Songs/Motion Picture's Soundtracks/More/C=C3=A9cile = Corbel - The Secret World Of Arrietty OST [FLAC]/20 - C=C3=A9cile Corbel = - Arrietty's Song (original Japanese version).flac ``` But when I get the dirname of that path and do a glob on it, zsh = doesn=E2=80=99t find any match: ``` ~/TMP/zbug $ ec "${$(cat path):h}"/*(D) zsh: no matches found: /Users/evar/my-music/Songs/Motion Picture's = Soundtracks/More/C=C3=A9cile Corbel - The Secret World Of Arrietty OST = [FLAC]/*(D) ``` I have tested this with `zsh -f`, and the bug is not present there. How = can I find what in my config is causing this? --Apple-Mail=_395136C5-B431-4FBF-AF68-60138B36E4CB--