Quote:
|
Originally Posted by Carlwill
My question is can I simply run rm -rf *.kde to delete everyone's .kde hidden directory in their home dir?
|
Depending on where you run that from, it's probably not going to match anything (or it won't match what you want it to).
Quote:
|
Originally Posted by Carlwill
I know if I remove KDE from server_old, that will not remove their ~/.kde directories sadly unless there is a switch I am unaware of.
|
IMO, that's a good thing.

I would be irked if removing (or upgrading) a DE decided to blow away personalized configurations.
Quote:
|
Originally Posted by Carlwill
Anyone know what the best course of action would be?
|
One option would be a simple find, e.g.:
Code:
# find /home -name '.kde' -exec echo rm -r {} \;
See that
echo in there? Run the command once and make sure you're very certain it is only going to delete what you'd expect. Then run it again without the echo...