📜  如何一起使用 find 和 -regex 标志 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:38.198000             🧑  作者: Mango

代码示例1
$ find . -regex ".*/[a-f0-9\-]\{36\}\.jpg"

# Note that you need to specify .*/ in the beginning because find matches the whole path.