Hi, One thing I also normally do it also look for copyright statements via the command line like so:
search “copyright” | sort -u Where search is: find . -type f -exec grep -i "$1" {} \; -print I looks through the output and match up to what software is mentioned in LICENSE. Thanks, Justin