mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-14 09:53:42 +08:00
16 lines
288 B
Fish
16 lines
288 B
Fish
|
# RUN: %fish %s
|
||
|
|
||
|
# Ensure that, if variable expansion results in multiple strings
|
||
|
# and one of them fails a glob, that we don't fail the entire expansion.
|
||
|
set dir (mktemp -d)
|
||
|
cd $dir
|
||
|
mkdir a
|
||
|
mkdir b
|
||
|
touch ./b/file.txt
|
||
|
|
||
|
set dirs ./a ./b
|
||
|
echo $dirs/*.txt
|
||
|
# CHECK: ./b/file.txt
|
||
|
|
||
|
rm -Rf $dir
|