In image-dired I use M-x
image-dired-mark-tagged-files
to mark files containing a tag using regexp. e.g. oil
.
What regex do I need to mark oil
but not wip
(work in progress).
Input:
/foo/IMG_2022.JPG;art;oil;wip
/foo/IMG_2023.JPG;oil;art;
Output needed:
/foo/IMG_2023.JPG;oil;art;
M-x
image-dired-mark-tagged-files
image-dired-mark-tagged-files is an autoloaded interactive compiled Lisp function in ‘image-dired.el’.
(image-dired-mark-tagged-files)
Use regexp to mark files with matching tag. A ‘tag’ is a keyword, a piece of meta data, associated with an image file and stored in image-dired’s database file. This command lets you input a regexp and this will be matched against all tags on all image files in the database file. The files that have a matching tag will be marked in the dired buffer.