find . -regextype sed -regex ".*/[a-f0-9\-]\{36\}\.jpg". Note that you need to specify .*/ in the beginning because find matches the whole ... ... <看更多>
Search
Search
find . -regextype sed -regex ".*/[a-f0-9\-]\{36\}\.jpg". Note that you need to specify .*/ in the beginning because find matches the whole ... ... <看更多>
You could try find . -regex '.*myfile[0-9][0-9]?'. or find . \( -name "myfile[0-9][0-9]" -o -name "myfile[0-9]" \). ... <看更多>
In this regular expressions (regex) tutorial, we're going to be learning how to match patterns of text ... ... <看更多>