summaryrefslogtreecommitdiffstats
path: root/uninstall_rude.py
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-13 05:43:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-13 05:43:39 +0000
commit19ae07d0d443ff8b777f46bcbe97119483356bfd (patch)
treedae169167c23ba7c61814101995de21d6abac2e8 /uninstall_rude.py
downloadtde-guidance-19ae07d0d443ff8b777f46bcbe97119483356bfd.tar.gz
tde-guidance-19ae07d0d443ff8b777f46bcbe97119483356bfd.zip
Added KDE3 version of KDE Guidance utilities
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-guidance@1102646 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'uninstall_rude.py')
-rw-r--r--uninstall_rude.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/uninstall_rude.py b/uninstall_rude.py
new file mode 100644
index 0000000..9e0c435
--- /dev/null
+++ b/uninstall_rude.py
@@ -0,0 +1,5 @@
+import os
+fhandle = open("install_log.txt","r")
+for line in fhandle.readlines():
+ print "deleting ", line[:-1]
+ os.system("rm -f "+line[:-1])