gpt4 book ai didi

bash:glob否定和多种模式的问题

转载 作者:行者123 更新时间:2023-11-29 09:31:05 25 4
gpt4 key购买 nike

我正在尝试编写一个 glob 模式,该模式返回不以 2 个可能后缀之一结尾的文件列表:done 和 monthly

我的测试目录中的文件列表是:

foo.done
foo.montly
foo.pdf
foo.txt

如果我只对 1 个后缀执行否定,我就完全成功了:

ls  !(*done) or ls  !(*monthly)

但是,当我尝试这样的事情时:

ls  !({*monthly,*done})

我明白了:

foo.done
foo.monthly
foo.pdf
foo.pdf
foo.txt
foo.txt

谁能帮我理解一个结果,它不仅没有产生我想要的否定结果,而且还列出了重复项!

最佳答案

使用| 分隔模式列表中的模式(docs):

If the extglob shell option is enabled using the shopt builtin, several extended pattern matching operators are recognized. In the following description, a pattern-list is a list of one or more patterns separated by a ‘|’.

结果:

$ shopt -s extglob

$ ls
foo.done foo.monthly foo.pdf foo.txt

$ ls *.!(monthly|done)
foo.pdf foo.txt

关于bash:glob否定和多种模式的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53731094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com