View previous topic :: View next topic |
Author |
Message |
cyisfor n00b
Joined: 19 Feb 2016 Posts: 40 Location: Oregon
|
Posted: Fri Feb 19, 2016 11:32 pm Post subject: Finding binary packages? |
|
|
How do I find what binary packages there are?
I mean binary packages, as in, the packages ending in -bin, which contain executable code that never gets compiled, not binary packages as in compiled ebuilds.
emerge --search -bin just searches for "-in"
Are they all guaranteed to end in -bin? |
|
Back to top |
|
|
khayyam Watchman
Joined: 07 Jun 2012 Posts: 6227 Location: Room 101
|
Posted: Fri Feb 19, 2016 11:34 pm Post subject: Re: Finding binary packages? |
|
|
cyisfor ...
Code: | # EIX_LIMIT=0 eix */*-bin |
... as far as I know, yes, 'bin' packages all end in -bin.
best ... khay |
|
Back to top |
|
|
cyisfor n00b
Joined: 19 Feb 2016 Posts: 40 Location: Oregon
|
Posted: Fri Feb 19, 2016 11:41 pm Post subject: |
|
|
Code: | equery list --format '$name' -p -f '.*-bin' | sort | uniq | seems to do it. |
|
Back to top |
|
|
|