Well, there are many ways to do this, from simply using the KFind gui and something like Konquoror, to writing a short script in Python, Perl, C, C++, or any other language that springs to mind. The simplest way, IMHO, is simply to use the "find" command that should be available on every system. Type
man find into a shell to see what is possible (nearly everything is - it's a powerful command... beware
). But essentially what you want is something like the following:
Code:
find / -name 'Divx' -exec chmod -Rv a+rwx \{\} \;
In other words - ' find all files/directories starting from / named Divx, change the attributes recursively to rwx, and do it verbosely'. If you're likely to be doing this often, then you could paste the above into a file, change the file mode to executable (chmod u+x <filename>), and then all that would be left is to type
./ <filename> into a shell (in the same directory) to run it all over again.
From memory, SuSE doesn't include either Python nor the Gcc compiler by default (just install using Yast if wanted) but Bourne Shell scripts will be fine. For more info on shell scripts, have a read of
Bash Guide for Beginners and later,
Advanced Bash Scripting.
Cheers,
mj