ubuntu app list terminal code example
Example 1: how to check installed apps in ubuntu
apt list --installed
Example 2: seeing all the installed apps i terminal
for app in /usr/share/applications/*.desktop; do echo "${app:24:-8}"; done
apt list --installed
for app in /usr/share/applications/*.desktop; do echo "${app:24:-8}"; done