I was reading a post about a CLI program for listening to the radio in the terminal. So I installed it, then realized I had already installed a similar program. Any advice on keeping track of CLI programs installed on Fedora, or any linux?
I don't have a good answer for your immediate question, but your post made me think, "there must be a way to show all available binaries in the current PATH".<p>And, of course, there is.<p><pre><code> compgen -c | sort | less
</code></pre>
<a href="https://unix.stackexchange.com/questions/60776/list-all-files-binaries-in-current-path" rel="nofollow">https://unix.stackexchange.com/questions/60776/list-all-file...</a>