I have some images named with generated uuid1 string. For example 81397018-b84a-11e0-9d2a-001b77dc0bed.jpg. I want to find out all these images using "find" command:

find . -regex "[a-f0-9\-]\{36\}\.jpg".

But it doesn't work. Something wrong with the regex? Could someone help me with this?

link|improve this question

1  
maybe change the regextype. The default is Emacs Regular Expressions, whatever that means. – pavium Jul 27 '11 at 13:11
feedback

closed as off topic by Matt Ball, bzlm, Will Jul 27 '11 at 15:20

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

4 Answers

up vote 5 down vote accepted
find . -regextype sed -regex ".*/[a-f0-9\-]\{36\}\.jpg"

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

Example:

susam@nifty:~/so$ find . -name "*.jpg"
./foo-111.jpg
./test/81397018-b84a-11e0-9d2a-001b77dc0bed.jpg
./81397018-b84a-11e0-9d2a-001b77dc0bed.jpg
susam@nifty:~/so$ 
susam@nifty:~/so$ find . -regextype sed -regex ".*/[a-f0-9\-]\{36\}\.jpg"
./test/81397018-b84a-11e0-9d2a-001b77dc0bed.jpg
./81397018-b84a-11e0-9d2a-001b77dc0bed.jpg

My version of find:

$ find --version
find (GNU findutils) 4.4.2
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Eric B. Decker, James Youngman, and Kevin Dalley.
Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b
Features enabled: D_TYPE O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS() CBO(level=0) 
susam@nifty:~/so$ 
susam@nifty:~/so$ find . -regextype foo -regex ".*/[a-f0-9\-]\{36\}\.jpg"
find: Unknown regular expression type `foo'; valid types are `findutils-default', `awk', `egrep', `ed', `emacs', `gnu-awk', `grep', `posix-awk', `posix-basic', `posix-egrep', `posix-extended', `posix-minimal-basic', `sed'.
link|improve this answer
I don't know why but only this works. Thanks! – thoslin Jul 27 '11 at 13:35
I don't know if this is just my version but I get find: Unknown regular expression type sed; valid types are findutils-default, awk, egrep, emacs, gnu-awk, grep posix-awk, posix-basic, posix-egrep, posix-extended – yarian Jul 27 '11 at 13:36
My version is find (GNU findutils) 4.4.2 – thoslin Jul 27 '11 at 13:37
@Tom it's the way regex in find works. According to the man page, the regex matches the whole file path, directories included, which means there's an implicit "^ ... $" surrounding your regex. It must match the WHOLE result line. – Manny D Jul 27 '11 at 13:40
Manny, I think Tom is wondering why -regextype sed is the only thing that seems to work. AFAIK, -regextype egrep should also work because egrep supports repetition counts but for some reason it doesn't. – Susam Pal Jul 27 '11 at 13:41
show 2 more comments
feedback

The -regex find expression matches the whole name, including the relative path from the current directory. For find . this always starts with ./, then any directories.

Also, these are emacs regular expressions, which have other escaping rules than the usual egrep regular expressions.

If these are all directly in the current directory, then

find . -regex '\./[a-f0-9\-]\{36\}\.jpg'

should work. (I'm not really sure - I can't get the counted repetition to work here.) You can switch to egrep expressions by -regextype posix-egrep:

find . -regextype posix-egrep '\./[a-f0-9\-]{36}\.jpg'
link|improve this answer
feedback

Try to use single quotes (') to avoid shell escaping of your string. Remember that the expression needs to match the whole path, i.e. needs to look like:

 find . -regex '\./[a-f0-9-]*.jpg'

Apart from that, it seems that my find (GNU 4.4.2) only knows basic regular expressions, especially not the {36} syntax. I think you'll have to make do without it.

link|improve this answer
feedback

Judging from other answers, it seems this might be find's fault.

However you can do it this way instead:

find . * | grep -P "[a-f0-9\-]{36}\.jpg"

You might have to tweak the grep a bit and use different options depending on what you want but it works.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.