Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 139464 - "grep" argument when unmerging KDE could be clarified
Summary: "grep" argument when unmerging KDE could be clarified
Status: RESOLVED FIXED
Alias: None
Product: [OLD] Docs on www.gentoo.org
Classification: Unclassified
Component: Other documents (show other bugs)
Hardware: All Linux
: Low minor (vote)
Assignee: Łukasz Damentko (RETIRED)
URL: http://www.gentoo.org/doc/en/kde-conf...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-06 11:50 UTC by Bill Skellenger
Modified: 2006-07-06 12:43 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bill Skellenger 2006-07-06 11:50:34 UTC
The docs recommend using the following command to unmerge old instances of KDE:

Code Listing 4.3: Removing selected packages
# equery list kde-base/ | grep 3.4 | xargs emerge --unmerge --pretend

When using the above command to get rid of old 3.3 stuff, it matched the following:

# equery list kde-base/ | grep 3.3
kde-base/artsplugin-mpg123-3.4.1  <-- (I don't intend to get rid of this guy)

The intention is to match 3.3 (with the "dot" as a decimal point), a more proper argument would be:  

# equery list kde-base/ | grep "3\.3"
Comment 1 Łukasz Damentko (RETIRED) gentoo-dev 2006-07-06 12:43:41 UTC
Fixed in CVS, thanks for reporting.