diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-12 21:43:37 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-12 21:43:37 +0100 |
commit | b6de8fb94443304cbff52a139d370d9058fdae5e (patch) | |
tree | 8a9dd4c5ab8a1e40d3f4991313c20841b5bd0587 /devstats.sh | |
parent | f9cea67641ebf4ee70d6c88997f1ed2b2c19cade (diff) |
added simple script to show wc -l of fifa and stock arch installers
Diffstat (limited to 'devstats.sh')
-rwxr-xr-x | devstats.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/devstats.sh b/devstats.sh new file mode 100755 index 0000000..4b6f9f8 --- /dev/null +++ b/devstats.sh @@ -0,0 +1,6 @@ +echo "This script doesn't do much, but this could be interesting..." +echo 'Amount of lines:' +echo -n "/arch/setup: " && wget -q -O - 'http://projects.archlinux.org/?p=installer.git;a=blob_plain;f=setup;hb=HEAD' | wc -l +echo -n "/arch/quickinst: " && wget -q -O - 'http://projects.archlinux.org/?p=installer.git;a=blob_plain;f=quickinst;hb=HEAD' | wc -l +echo "Fifa:" +find `dirname $0`/src -type f | grep -v whatsthis | xargs wc -l
\ No newline at end of file |