home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / docs / lovelace / lcount < prev    next >
Encoding:
Text File  |  1995-11-21  |  581 b   |  26 lines

  1. #!/bin/sh
  2.  
  3. echo "The following are counts of Lovelace sizes."
  4. echo
  5.  
  6. echo "This is for Lovelace version:"
  7. cat version
  8.  
  9. echo "Number of .htm files:"
  10. ls *.htm | wc -l
  11. echo
  12.  
  13. echo "Number of lesson files:"
  14. ls lesson*.les | wc -l
  15.  
  16. echo "Number of sections in lesson files:"
  17. grep '^<SECTION' lesson*.les | wc -l
  18.  
  19. echo "Number of words and characters in lesson files, removing HTML marks:"
  20. cat lesson*.les | rmhtml | wc -wc
  21. echo
  22.  
  23. echo "Number of words and characters in all html files, removing HTML marks:"
  24. echo "(Warning, this includes source code and such)"
  25. cat *.htm | rmhtml | wc -wc
  26.