In case you have not heard, the forthcoming 10.9.5 update will introduce a new requirement for app signatures that may present some problems depending on your client systems' Gatekeeper settings:
http://www.tuaw.com/2014/08/04/apples-changes-to-app-signing-could-leave-some-apps-blocked-by
I was curious what the impact would be with our base configuration so I came up with the following report script you may find useful:
#!/bin/bash
RPT_FILE=~/Signing_Report.csv
for i in /Applications/*.app /Applications/Microsoft Office 2011/*.app /Applications/Utilities/*.app
do
version=`codesign -dv "$i" 2>&1 | grep "^Sealed Resources" | awk '{print $3}'`
printf ""$i",$version
"
done > $RPT_FILE