<div dir="ltr"><div class="gmail_default" style="font-family:tahoma,sans-serif">I also use sbopkg.  But if you're looking for something less automated to find the list of packages you've installed, you could run this:</div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default"><font face="tahoma, sans-serif">  ls /var/log/packages/*SBo | sort -f | cut -d/ -f5</font><br></div><div class="gmail_default"><font face="tahoma, sans-serif"><br></font></div><div class="gmail_default"><font face="tahoma, sans-serif">That will show all packages installed from <a href="http://slackbuilds.org">slackbuilds.org</a> on your system without showing any other packages.  You can also add to the pipeline to further edit the listing if you only wish to see only the name of each package or only the name and version of each package, for instance.</font></div><div class="gmail_default"><font face="tahoma, sans-serif"><br></font></div><div class="gmail_default"><font face="tahoma, sans-serif">If you want to get a list of the packages and their dates of installation, you could do this:</font></div><div class="gmail_default"><font face="tahoma, sans-serif"><br></font></div><div class="gmail_default"><font face="tahoma, sans-serif">  for i in $(ls /var/log/packages/*SBo | sort -f | cut -d/ -f5); do echo -n "$i: "; stat -c %y $i | cut -d\  -f1; done</font></div><div class="gmail_default"><font face="tahoma, sans-serif"><br></font></div><div class="gmail_default"><font face="tahoma, sans-serif">If you want to get a list of packages that have changed since you last installed them, you'll need to use git to sync up the repo on your system.  Then you'll have to iterate through the list of package names on your system, checking your local git repo for the latest version of the package and comparing it to your own.  You could almost certainly do that as a one liner too, but a small script would probably be better.</font></div><div class="gmail_default"><font face="tahoma, sans-serif"><br></font></div><div class="gmail_default"><font face="tahoma, sans-serif">Unless you're really interested in rolling your own script(s) for this, I really do recommend using a more fully automated tool that's already been written.  I can't really recommend one over the others since I've only used sbopkg.  I really should try out the other tools to see what they can do.  But as others have said, there are multiple options for what you're trying to do and at least one of them is probably what you're looking for.</font></div><div class="gmail_default"><font face="tahoma, sans-serif"><br></font></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jan 13, 2018 at 11:29 AM, B Watson <span dir="ltr"><<a href="mailto:yalhcru@gmail.com" target="_blank">yalhcru@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 1/13/18, Alexander Grotewohl <<a href="mailto:alex@dcclost.com">alex@dcclost.com</a>> wrote:<br>
> So I was thinking it'd be kind of neat if it were possible to log in on<br>
> the slackbuilds site and check off software I've installed, and perhaps<br>
> get a list of items that have changed since I last checked. Yeah,<br>
> wishful thinking indeed :)<br>
<br>
</span>Doing that on a website, manually, by checking boxes... would be tedious<br>
indeed. The computer already knows the information, better to automate it.<br>
<br>
sbopkg isn't my favorite thing in the world, but it does a good job of<br>
finding locally-installed packages that are outdated (have new versions<br>
on SBo).<br>
<br>
I've never used sbotools, but surely it has the same functionality. I'm<br>
tempted to say "if it doesn't, I'll eat my hat", but I'm running low on<br>
hats lately...<br>
<div class="HOEnZb"><div class="h5">______________________________<wbr>_________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org">SlackBuilds-users@slackbuilds.<wbr>org</a><br>
<a href="https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>mailman/listinfo/slackbuilds-<wbr>users</a><br>
Archives - <a href="https://lists.slackbuilds.org/pipermail/slackbuilds-users/" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>pipermail/slackbuilds-users/</a><br>
FAQ - <a href="https://slackbuilds.org/faq/" rel="noreferrer" target="_blank">https://slackbuilds.org/faq/</a><br>
<br>
</div></div></blockquote></div><br></div>