On Thu, Jun 14, 2018 at 8:55 AM Robert Moskowitz <rgm@htt-consult.com> wrote:

On 06/14/2018 09:08 AM, Ahmad Samir wrote:
> On 14 June 2018 at 14:27, Robert Moskowitz <rgm@htt-consult.com> wrote:
>> I want to get history for all the pulseaudio components (to update my
>> audacity bug report at rpmfusion).
>>
>> #rpm -q pulseaudio --last
>>
>> produces
>>
>> pulseaudio-11.1-18.fc28.1.x86_64              Thu 24 May 2018 09:59:34 PM
>> EDT
>>
>> but
>>
>> # rpm -q pulseaudio* --last
>>
> FWIW, to match using a wildcard you'd have to use `rpm -qa pulseaudio*`.

Don't think so:

# `rpm -qa pulseaudio*`
bash: pulseaudio-module-bluetooth-11.1-18.fc28.1.x86_64: command not found

Don't include the tick marks, it tried to execute what's inside... What he means is that rpm doesn't accept wildcards so if you want to find partial matches, you need to pipe it to grep...

# rpm -qa | grep pulseaudio

Richard