From d040e34352f89bac7050651af7cb7ad99bdf0299 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Wed, 7 Oct 2015 23:02:29 -0700 Subject: [PATCH] Add a LOC counter This implementation isn't very sophisticated but it works. TrivialFix Change-Id: I8df29be200078764ccc917912ecea4a399fc7d62 --- loc | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 loc diff --git a/loc b/loc new file mode 100755 index 0000000000..4f40d415ae --- /dev/null +++ b/loc @@ -0,0 +1,35 @@ +#!/bin/bash + +ANSIBLE=`find ansible -type f -exec cat {} \; | wc -l` +DOCKER=`find docker -type f -exec cat {} \; | wc -l` +DOC=`find doc -type f -exec cat {} \; | wc -l` +TESTS=`find tests -type f -exec cat {} \; | wc -l` +BUILD=`find kolla -type f -exec cat {} \; | wc -l` + +DEMOS=`find demos -type f -exec cat {} \; | wc -l` +DEVENV=`find devenv -type f -exec cat {} \; | wc -l` +SPECS=`find specs -type f -exec cat {} \; | wc -l` +ETC=`find etc -type f -exec cat {} \; | wc -l` +TOOLS=`find tools -type f -exec cat {} \; | wc -l` +VAGRANT=`find vagrant -type f -exec cat {} \; | wc -l` + +CORE=$(($ANSIBLE+$DOCKER+$TESTS+$DOCS+$BUILD)) +SUPP=$(($DEMOS+$DEVENV+$SPECS+$ETC+$TOOLS+$VAGRANT)) +TOTAL=$(($CORE+$SUPP)) + + +echo "Ansible $ANSIBLE" +echo "Build $BUILD" +echo "Demos $DEMOS" +echo "Doc $DOC" +echo "Etc $ETC" +echo "Docker $DOCKER" +echo "Devenv $DEVENV" +echo "Specs $SPECS" +echo "Tests $TESTS" +echo "Tools $TOOLS" +echo "Vagrant $VAGRANT" +echo "" +echo "Core Code $CORE" +echo "Support Code $SUPP" +echo "Total Code $TOTAL"