CMIS 325 Name:____________________________________ grepping: In the rime file: How many lines have the string ice? How many lines have the word ice? How many lines have the string ice, regardless of case? How many lines have "and the". What are their line numbers? How many blank/empty lines are there? How many lines don't contain a space (these will probably be empty lines). How many non-empty lines do not start with a letter? (hint: pipeline) How many lines have a capitalized word that is not the first word of the line? In the /usr/share/dict/linux.words file: How many words have all five vowels? How many words have all five vowels in order? How many words have all five vowels, each once, in order? How many words are in letter order? How many words that start with a capital letter? How many words start and end with a vowel, like ice and utopia. How many words start and end with the same vowel, like eye and alpha (use egrep and its | operator). What is/are the longest word/s? How many two-letter words are there? How many of the so-called words contain non-letters? How many words have a capital letter that isn't at the beginning of the word? Which are the words with four or more of the same vowel, like initializing. What's the longest word with only one vowel? Which words contain either your first or last name, in any case?