You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rq/calcsize.sh

32 lines
714 B
Bash

#!/bin/sh
#
# Rougly calculates the size of the (non-whitespace, non-comment) code
# This is a convenience script to make sure our "lightweight" statement on the
# project home page will still hold ;)
#
# Copyright (c) 2011 Vincent Driessen, @nvie
#
find_source_files() {
find . -name '*.py' | egrep -v '(dummy|examples|setup|tests)'
}
dump_source_files() {
find_source_files | xargs cat
}
filter_out_comments_and_whitespace() {
grep -v '^\s*#' | grep -v '^\s*$' | grep -v '"""'
}
code_size() {
dump_source_files | filter_out_comments_and_whitespace | wc -c
}
code_locs() {
dump_source_files | filter_out_comments_and_whitespace | wc -l
}
echo "Size: $(code_size) kB"
13 years ago
echo "Lines of code: $(code_locs)"