From a discussion on #gnome at GimpNet (irc.gnome.org) December 30th, 2003 Roey, the author of scripts here has to say this about them: they need a big 'beware these are hacky and ugly' So, here it goes: BEWARE THESE ARE HACKY AND UGLY And before that he had something more on the positive side to say: so Gnome devs were talking about making a standard convention for attribute names.. whatever became of it? or you said you didnt' know after making these tools ('ea' for setting lists=of,key=val pairs and 'kw' for setting list,of,key,words) I'm ready to start categorizingthe hell out of my files:) they use python's xattr module and python 2.3 fileutils need to support EAs just so that if you mv/cp your files, they won't lose their EA data ;) debian sid's fileutils support them they're really really simple scripts one is < 160 and the other is <200 and that's with a big GPL paragraph at the beginning but you can do this: say you want to add a comment to some files ea -a subject="pictures from 2003 Russia visit" *.jpg ea -a comment="big boring city" city.jpg or you can ea -d comment *.jpg to remove the comments now say you want to add keywords: kw -a lesbian,proshoot,interracial *.jpg then you can query: which pictures from this dir on down show lesbians? kw -rq lesbians * or kw -rq lesbians So folks, go play with it, and blame Roey if you screw something up.