User:Giannoug

(New page: This, someday, may contain my contributions to the Maemo community! :))
(How to remove unused config files for unistalled programs)
 
(6 intermediate revisions not shown)
Line 1: Line 1:
-
This, someday, may contain my contributions to the Maemo community! :)
+
=== How to remove unused config files for unistalled programs ===
 +
<pre>
 +
dpkg -l | awk '/^rc/ {print $2}' | xargs dpkg -P
 +
</pre>

Latest revision as of 16:35, 11 July 2010

[edit] How to remove unused config files for unistalled programs

dpkg -l | awk '/^rc/ {print $2}' | xargs dpkg -P