List paths to all unsigned app dirs?

Linux / Perl developer here who is now developing a few things on Mac.


As the title says, I need a command line approach to list paths to all unsigned appliation directories.


It appears 'spctl' reports some of this information, but, I'm unclear as to how to find all applications installed on the machine.


Are all apps necessarily stored in '/Applications/'?

If not, what technically constitues an 'App' in Mac OSX speak?


Once all installed apps are indentified, what's the best way to determine if gatekeeper thinks they're signed?

No.


The suffix: .app


CLI example to list (non-apple) applications: find ~ -iname "*.app"


Check codesigning: codesign -dv /someRandom.app

List paths to all unsigned app dirs?
 
 
Q