Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[bug] Globbing fails with execute-only directory in path
- X-seq: zsh-workers 42554
- From: Tatsuyuki Ishi <ishitatsuyuki@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [bug] Globbing fails with execute-only directory in path
- Date: Wed, 28 Mar 2018 22:35:50 +0900
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=t3+vo+Oa9Ic/NtxujsfS3gUW9sOgZB1SHOZ3pJ/ubRo=; b=NPjPygmOUAERvR9x/yIomkA/aKw+CR5RbZkRCWFLBNmwfm6+pngcqvzlq9UuzDq3Q2 DOps6vFlbqyLKYddnyFfbMVztMt6LXRMPf1BdqS3kQOg8B8u6ZHmCsiPqzlDEI4VROzV 7B16WR+hQ8y6Azpo0QU+mc72t4guUanHO7SRcT1Vk5izlmEIg9L5p9fpWcLGuHZnsUuA vQmPpgKqEj6VsGHuddQuK7qQNx+DtE/4qdKbYAMPsE2+K3JUfc2CoczzkQw9VHFuaeaL 3CL3sEq2B4TdqJ7d0cr7VqzCLu743lx5LmvoRJ3iuK2z7hHxdLBFh8Pc4H+aT0mLDJYj rvwg==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Globs fail to work when one of the directory component is execute-only
(not readable). This is the case on Android (/data/data/ is execute
only so each app can be isolated).
Reproduction steps:
mkdir -p data/app
chmod 111 data
touch data/app/{a,b}
ls data/app/*
Actual results (zsh 5.4.2):
zsh: no matches found: data/app/*
Expected results (bash):
data/app/a data/app/b
Messages sorted by:
Reverse Date,
Date,
Thread,
Author