diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-22 07:52:33 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-22 07:52:33 +0000 |
| commit | 8b3c16e6152a527f9aec1a88a9eed74119de7000 (patch) | |
| tree | f0bde5cea15e696e42cade06a3b12ff6b13acc57 /scripts/linecount.sh | |
| parent | 9899666a7ce6679a3b9667ab09f615f4d0769c16 (diff) | |
| download | zcatch-8b3c16e6152a527f9aec1a88a9eed74119de7000.tar.gz zcatch-8b3c16e6152a527f9aec1a88a9eed74119de7000.zip | |
major engine cleanup. dependency on baselib removed. engine is now C code (not ansi tho). some other cruft removed aswell
Diffstat (limited to 'scripts/linecount.sh')
| -rwxr-xr-x | scripts/linecount.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/linecount.sh b/scripts/linecount.sh index eb8978ce..7b2116eb 100755 --- a/scripts/linecount.sh +++ b/scripts/linecount.sh @@ -1,2 +1,2 @@ #!/bin/sh -wc `find . -iname *.cpp` `find . -iname *.h` +wc `find . -iname *.cpp` `find . -iname *.h` `find . -iname *.c` |