Fix make-array transforms.
[sbcl.git] / wc.sh
1 #!/bin/sh
2 set -e
3
4 # How big is this project anyway? Crudely estimate non-comment source lines..
5
6 echo -n "approximate Lisp source lines: "
7 find . -name "*.lisp" -print | xargs egrep -hs '^[      ]*[^    ;]' | wc -l
8 echo -n "approximate Lisp source non-whitespace chars: "
9 find . -name "*.lisp" -print | xargs egrep -hs '^[      ]*[^    ;]' \
10   | perl -ne 's/\s//g ; print' | wc -c
11 # some errors in Lisp counting above:
12 #   * doesn't catch #| .. |#
13 #   * doesn't catch #+NIL convention for commenting out forms
14 #   * doesn't catch stale source files which are no longer used
15
16 echo -n "approximate C source lines: "
17 find . -name "*.[ch]" -print | xargs egrep -s '^[       ]*[^    /*]' | wc -l
18 # errors:
19 #   * only crudely approximates "/*"-style commenting (using the assumption
20 #     that all lines beginning with "/" or "*" are beginning of comments or
21 #     continuation of comments respectively)
22 #   * doesn't catch #if 0 convention for commenting out blocks
23 #   * doesn't catch stale source files which are no longer used
24
25 echo "(ignoring .sh, .S, etc.)"