yast install history

can somebody please refresh my memory?
There is a command to create a txt file that lists the yast install history. The rpm installs through yast are listed by date

ok - so I know it is something liek

rpm -qa --last

but I can’t remember the part to make it a txt file

All you need to do is redirect the output to a text file with the appropriate bash command. Try this:

rpm -qa --last > myrpms.txt

I knew it would be something simple - thanks :slight_smile: