Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
yurichev committed Jul 25, 2016
1 parent 5c185b6 commit bd2e3e5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions filestat.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
echo tex
find . -name '*.tex' | wc -l

echo c
find . -name '*.c' | wc -l

echo cpp
find . -name '*.cpp' | wc -l

echo lst
find . -name '*.lst' | wc -l

echo asm
find . -name '*.asm' | wc -l

echo s
find . -name '*.s' | wc -l

echo png
find . -name '*.png' | wc -l

echo lines in all TeX files:
find . -name '*.tex' | xargs wc -l

0 comments on commit bd2e3e5

Please sign in to comment.