We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31cab07 + f895f82 commit 4c18067Copy full SHA for 4c18067
scripts/count-lines.sh
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env bash
2
+
3
+for F in *
4
+do
5
+ if [[ -f $F ]]
6
+ then
7
+ echo $F: $(cat $F | wc -l)
8
+ fi
9
+done
0 commit comments