Exercises
See Appendix A, Exercise Answers for answers.
- Construct a regular expression that matches:
- at least one
afollowed by any number ofb's - any number of backslashes followed by any number of asterisks (any number might be zero)
- three consecutive copies of whatever is contained in
$whatever - any five characters, including newline
- the same word written two or more times in a row (with possibly varying intervening whitespace), where "word" is defined as a nonempty sequence of nonwhitespace characters
- at least one
-
- Write a program that accepts a list of words on
STDINand looks for a line containing all five vowels (a,e,i,o, andu). Run this program on/usr/dict/words[] and see what shows up. In other words, enter:$
(This presumes you name your programmyprogram</usr/dict/wordsmyprogram.)[9] Your system's dictionary may be somewhere other than /usr/dict/words ; check the spell (1) manpage.
- Modify the program so that the five vowels have to be in order and intervening letters don't matter.
- Modify the program so that all vowels must be in an increasing order, so all five vowels have to be present, and no "e" can occur before an "a", no "i" can occur before an "e", and so on.
- Write a program that accepts a list of words on
- Write a program that looks through /etc/passwd [] (on
STDIN), printing the login name and real name of each user. (Hint: usesplitto break the line up into fields, thens///to get rid of the parts of thecommentfield that are after the first comma.)[10] If using NIS, your system may have little data in /etc/passwd. See if
ypcatpasswdgives more information. - Write a program that looks through /etc/passwd (on
STDIN) for two users with the same first name, and prints those names. (Hint: after extracting the first name, create a hash with the name for a key and the number of times it was seen as the value. When the last line ofSTDINhas been read, look through the associative array for counts of greater than one.) - Repeat the last exercise, but report the login names of all users with the same first name. (Hint: instead of storing a count, store a list of login names separated by spaces. When finished, look through the values for ones that contain a space.)