gpt4 book ai didi

regex - 或查找正则表达式中的条件

转载 作者:太空宇宙 更新时间:2023-11-04 09:25:03 25 4
gpt4 key购买 nike

为什么有文件却不查找?

查找 ./-regex '.*(jar|war)'

最佳答案

有关正则表达式支持的语法的信息,请参阅man find:

-regextype type
Changes the regular expression syntax understood by -regex and
-iregex tests which occur later on the command line. Currently-
implemented types are emacs (this is the default), posix-awk,
posix-basic, posix-egrep and posix-extended.

这个有效:

$ find . -regextype egrep -regex '(.*jar)|(.*war)'

为避免使用 -regextype 将表达式更改为 emacs 正则表达式:

$ find . -regex '.*\(jar\|war\)'

关于regex - 或查找正则表达式中的条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37280515/

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