Hi everyone, I was trying to use extended attributes to store some flags for later retrieval.
I figured "find" would contain some way to match on those, but apparently it doesn't (either normal "attributes" or "extended"). The closest I could find on the net is a Sun extension "-xattr" which simply matches when a file has *any* extended attributes, which is next to useless. Has anyone had any though of this? Wouldn't options such as these ones: find -attr [+/-]d (match all files with "attribute" "d" set/unset) find -xattr [!]name[=value] (match all files with "extended attribute" "name" [set to "value"]) Any thoughts? Bests.