root / trunk / buildscripts / usage

Revision 2926, 268 bytes (checked in by david, 3 years ago)

prop updates

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1#!/bin/bash
2cd ../src
3if [ $# -gt 1 ]; then
4        cd $2
5fi
6grep -r "dojo\.$1\." * | grep -v "\.svn" | grep -v -e 'dojo\.require\|dojo\.provide\|moduleLoaded' |\
7sed -r 's/^.*(dojo\.'$1'\.[a-zA-Z0-9_\.]+).*$/\1/' | sed -r 's/\.(apply|call)$//' | sort | uniq -c | sort -g -r
Note: See TracBrowser for help on using the browser.