Difference between-regex and-name of find 1. the biggest difference with-name and-iname is that-regex uses the entire result output by find (different from the absolute path name) as the object to be matched, not only is the last part of the result www.2cto.com example/tmp Directory available and only... difference between-regex and-name of find 1. the biggest difference with-name and-iname is that-regex uses the entire result output by find (different from the absolute path name) as the object to be matched, not just the last part of the result www.2cto.com example/The tmp directory contains only aaa, aa, 1, 2. the find-name "a *" files can be found in aaa and aa, while the find/tmp-regex "a *" files cannot be found. none of them can be found, this is because the/tmp/aaa/tmp/aa-name matches the "aaa" and "aa" sections in the result, while-reg Ex matches the complete "/tmp/aaa" and "/tmp/aa. so you need to write find/tmp-regex ". *. * "2. note that the above is. * instead of * www.2cto.com-name, what can be interpreted is based on the matching characters of file glob in shell, including: (1) * representing any length string (2 )? Represents any single character (3) [set] represents an optional character set (4) [^ set] or [! Set] indicates a set (5) brace expansion that uses ASCII as the complete set for [set], that is,/tmp/{a, B, c} is extended to three strings:/tmp/a/tmp/B and/tmp/c. Note that the file globing mechanism of shell is often not considered a regular expression. -regex accepts the regular expression of "orthodox", which has many things to say. Basically, it is the same as the regex mentioned in the emacs document, because the regex interpretation section in the find Manual is actually the part that links to emacs to explain regex. in the above example, the biggest difference is. * represents any length string.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.