up vote 0 down vote favorite
share [g+] share [fb]

Assume you have a small collection of WebCMS assembled, subdirs in ~/www/test/ or so. And now you want to quickly/crude scan and detect the license in each project.

Is there a simple grep/perl/regex scanner which can guess the used licenses? Doesn't need to be exact or reliable, just for getting a rough overview, and just needs to inspect directory-wise.

link|improve this question

Considering that each project declares its license in its own way, something like this would prob be fairly error prone (I know you used the term heuristic so you realize that). You could search for an @license doc tag, and if that fails try to match on other criteria... But it's not going to be trivial if you want it reliable... – ircmaxell Sep 9 '10 at 19:14
@ircmaxell: Yes, it hardly can be done reliably. I've just tried a few simple egrep "\w+ License" */* scans, but even that only gives me an approximation for half of them. The only sensible way seems to be looking for license*, copying* or readme* files (and case-insensitively). But even then you'd still need a prepared list of guesstimate regexpressions.. – mario Sep 9 '10 at 19:41
feedback

1 Answer

up vote 1 down vote accepted

ohcount, the tool http://ohloh.net/ uses to extract various metrics like number of lines per programming language from source code, also happens to have quite a lot of seemingly good heuristics to detect licenses. I haven't used it myself, but it seems to be exactly what you're looking for.

link|improve this answer
apt-get install ohcount && echo ":)" – mario Sep 10 '10 at 13:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.