aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/linecount
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-10-18 11:40:53 +0000
committerMartin Willi <martin@strongswan.org>2006-10-18 11:40:53 +0000
commit5ec0c594fb8b7dc14e668fa7496b80b832587cd7 (patch)
tree9a4e5f5e10248dec736de1b2313dd3277bc38cf6 /scripts/linecount
parent85929956ae2c2bb293f5387a0c00f15ae6a5e85c (diff)
downloadstrongswan-5ec0c594fb8b7dc14e668fa7496b80b832587cd7.tar.bz2
strongswan-5ec0c594fb8b7dc14e668fa7496b80b832587cd7.tar.xz
moved various scripts in scripts/ dir
add configure script wrappers
Diffstat (limited to 'scripts/linecount')
-rwxr-xr-xscripts/linecount3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/linecount b/scripts/linecount
new file mode 100755
index 000000000..0e659cd4b
--- /dev/null
+++ b/scripts/linecount
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+find $1 -name '*.[ch]' | grep -v .svn | xargs cat | grep -v ^[[:space:]]*$ | wc -l