home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- echo "The following are counts of Lovelace sizes."
- echo
-
- echo "This is for Lovelace version:"
- cat version
-
- echo "Number of .htm files:"
- ls *.htm | wc -l
- echo
-
- echo "Number of lesson files:"
- ls lesson*.les | wc -l
-
- echo "Number of sections in lesson files:"
- grep '^<SECTION' lesson*.les | wc -l
-
- echo "Number of words and characters in lesson files, removing HTML marks:"
- cat lesson*.les | rmhtml | wc -wc
- echo
-
- echo "Number of words and characters in all html files, removing HTML marks:"
- echo "(Warning, this includes source code and such)"
- cat *.htm | rmhtml | wc -wc
-