source: trunk/anuga_core/source/anuga/count_lines.py @ 8025

Last change on this file since 8025 was 7865, checked in by hudson, 14 years ago

Refactoring to clean up pylint errors.

File size: 274 bytes
Line 
1"""Count total number of lines of code in ANUGA
2"""
3
4import os
5
6cmd_string = 'find . -type f -name "*.py" -print | xargs wc -l'
7print cmd_string
8os.system(cmd_string)
9
10
11cmd_string = 'find . -type f -name "*.c" -print | xargs wc -l'
12print cmd_string
13os.system(cmd_string)
14
15
Note: See TracBrowser for help on using the repository browser.